kiss-godot getNode macro

This commit is contained in:
2023-02-13 06:22:52 -07:00
parent 11f09f6987
commit 9c39c0cc13
3 changed files with 22 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
-lib kiss
-cp src
--main kiss_godot.Main
--interp

View File

@@ -0,0 +1,16 @@
{
"name": "kiss-godot",
"description": "kiss macros for Godot",
"classPath": "src/",
"dependencies": {
"kiss": ""
},
"url": "https://github.com/NQNStudios/kisslang",
"contributors": [
"NQNStudios"
],
"version": "0.0.0",
"releasenote": "",
"tags": [],
"license": "LGPL"
}

View File

@@ -0,0 +1,2 @@
(defMacro getNode [parent childPath]
`(cast (.getNode ,parent ,childPath)))