This repository has been archived on 2021-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
superv/javatest.jsx

21 lines
381 B
JavaScript

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) {
}
}