From 755c00caee232cb613d42dab1093246dc765110c Mon Sep 17 00:00:00 2001 From: latenightz Date: Tue, 27 Apr 2021 15:57:54 +0000 Subject: [PATCH] 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 --- javatest.jsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 javatest.jsx diff --git a/javatest.jsx b/javatest.jsx new file mode 100644 index 0000000..f0e9a9b --- /dev/null +++ b/javatest.jsx @@ -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) { + + } +}