├── .gitignore ├── LICENSE ├── README.md ├── addons └── SGLscript │ ├── ParserScript.sglscript │ ├── ParserTest.gd │ ├── ParserTest.tscn │ ├── SGLscriptInterpreter.gd │ ├── SGLscriptParser.gd │ ├── SGLscriptPlugin.gd │ ├── engine.cfg │ ├── icon.png │ └── plugin.cfg ├── engine.cfg ├── icon.png ├── sglscript-examples ├── 3d-scene │ ├── 3d_scene.gd │ ├── main.tscn │ ├── main_script.sglscript │ └── message_window.gd ├── minimal │ ├── face.gd │ ├── main.tscn │ ├── message_window.gd │ └── minimal_script.sglscript └── res │ ├── shadowy-font-bold.fnt │ ├── shadowy-font-bold.sv.png │ ├── shadowy-font-italic.fnt │ ├── shadowy-font-italic.sv.png │ ├── shadowy-font.fnt │ └── shadowy-font.sv.png └── sglscript-screenshots ├── cube-snippet.png ├── cube.jpg ├── minimal.png ├── node-list.png ├── plugin.png ├── properties.png └── scene-struct.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/README.md -------------------------------------------------------------------------------- /addons/SGLscript/ParserScript.sglscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/ParserScript.sglscript -------------------------------------------------------------------------------- /addons/SGLscript/ParserTest.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/ParserTest.gd -------------------------------------------------------------------------------- /addons/SGLscript/ParserTest.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/ParserTest.tscn -------------------------------------------------------------------------------- /addons/SGLscript/SGLscriptInterpreter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/SGLscriptInterpreter.gd -------------------------------------------------------------------------------- /addons/SGLscript/SGLscriptParser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/SGLscriptParser.gd -------------------------------------------------------------------------------- /addons/SGLscript/SGLscriptPlugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/SGLscriptPlugin.gd -------------------------------------------------------------------------------- /addons/SGLscript/engine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/engine.cfg -------------------------------------------------------------------------------- /addons/SGLscript/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/icon.png -------------------------------------------------------------------------------- /addons/SGLscript/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/addons/SGLscript/plugin.cfg -------------------------------------------------------------------------------- /engine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/engine.cfg -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/icon.png -------------------------------------------------------------------------------- /sglscript-examples/3d-scene/3d_scene.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/3d-scene/3d_scene.gd -------------------------------------------------------------------------------- /sglscript-examples/3d-scene/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/3d-scene/main.tscn -------------------------------------------------------------------------------- /sglscript-examples/3d-scene/main_script.sglscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/3d-scene/main_script.sglscript -------------------------------------------------------------------------------- /sglscript-examples/3d-scene/message_window.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/3d-scene/message_window.gd -------------------------------------------------------------------------------- /sglscript-examples/minimal/face.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/minimal/face.gd -------------------------------------------------------------------------------- /sglscript-examples/minimal/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/minimal/main.tscn -------------------------------------------------------------------------------- /sglscript-examples/minimal/message_window.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/minimal/message_window.gd -------------------------------------------------------------------------------- /sglscript-examples/minimal/minimal_script.sglscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/minimal/minimal_script.sglscript -------------------------------------------------------------------------------- /sglscript-examples/res/shadowy-font-bold.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/res/shadowy-font-bold.fnt -------------------------------------------------------------------------------- /sglscript-examples/res/shadowy-font-bold.sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/res/shadowy-font-bold.sv.png -------------------------------------------------------------------------------- /sglscript-examples/res/shadowy-font-italic.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/res/shadowy-font-italic.fnt -------------------------------------------------------------------------------- /sglscript-examples/res/shadowy-font-italic.sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/res/shadowy-font-italic.sv.png -------------------------------------------------------------------------------- /sglscript-examples/res/shadowy-font.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/res/shadowy-font.fnt -------------------------------------------------------------------------------- /sglscript-examples/res/shadowy-font.sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-examples/res/shadowy-font.sv.png -------------------------------------------------------------------------------- /sglscript-screenshots/cube-snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-screenshots/cube-snippet.png -------------------------------------------------------------------------------- /sglscript-screenshots/cube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-screenshots/cube.jpg -------------------------------------------------------------------------------- /sglscript-screenshots/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-screenshots/minimal.png -------------------------------------------------------------------------------- /sglscript-screenshots/node-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-screenshots/node-list.png -------------------------------------------------------------------------------- /sglscript-screenshots/plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-screenshots/plugin.png -------------------------------------------------------------------------------- /sglscript-screenshots/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-screenshots/properties.png -------------------------------------------------------------------------------- /sglscript-screenshots/scene-struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matson48/sglscript-godot/HEAD/sglscript-screenshots/scene-struct.png --------------------------------------------------------------------------------