Java scripting test; LOOK AT README.MD!!

Important update... if you like to add to the game and/or compile from source, this means you!

Read the compiling section in README.md
This commit is contained in:
latenightz 2021-04-27 15:57:54 +00:00
parent 90f1443eb3
commit 755c00caee
1 changed files with 20 additions and 0 deletions

20
javatest.jsx Normal file
View File

@ -0,0 +1,20 @@
export default class jtest extends godot.Node {
// Declare member variables here. Examples:
a = 2;
b = "text";
constructor() {
super();
}
// Called when the node enters the scene tree for the first time.
_ready() {
godot.print("Java has been loaded!!");
}
// Called every frame. 'delta' is the elapsed time since the previous frame.
_process(delta) {
}
}