/davinciengine_js

JavaScript plugin for Davinci Engine

Primary LanguageCMIT LicenseMIT

lumixengine_js

JavaScript plugin for Lumix Engine

This is just proof of concept and it's not supported.

Example JS code:

function foo() {
	ImGui.Text("Hello world")
}

({
	name : "Test",
	update : function() {
		ImGui.Begin("xoxo")
		ImGui.Text("foo " + this.name)
		foo();
		ImGui.End()
	}
})