summaryrefslogtreecommitdiff
path: root/Samples/Hello
diff options
context:
space:
mode:
Diffstat (limited to 'Samples/Hello')
-rw-r--r--Samples/Hello/gfx/icon.png.asr1
-rw-r--r--Samples/Hello/gfx/mt_thunder.axm3
-rw-r--r--Samples/Hello/scripts/hello.lua.asr3
-rw-r--r--Samples/Hello/scripts/hello.lua.axm3
-rw-r--r--Samples/Hello/scripts/tiledmapimporter.lua7
-rw-r--r--Samples/Hello/scripts/tiledmapimporter.lua.axm0
-rw-r--r--Samples/Hello/shaders/sh_thunder.axm4
7 files changed, 18 insertions, 3 deletions
diff --git a/Samples/Hello/gfx/icon.png.asr b/Samples/Hello/gfx/icon.png.asr
index 93d6d58..7951698 100644
--- a/Samples/Hello/gfx/icon.png.asr
+++ b/Samples/Hello/gfx/icon.png.asr
@@ -1,3 +1,4 @@
<image>
<extern>icon.png</extern>
+ <size>1</size>
</image> \ No newline at end of file
diff --git a/Samples/Hello/gfx/mt_thunder.axm b/Samples/Hello/gfx/mt_thunder.axm
new file mode 100644
index 0000000..a50afa1
--- /dev/null
+++ b/Samples/Hello/gfx/mt_thunder.axm
@@ -0,0 +1,3 @@
+<material>
+ <shader>/shaders/sh_thunder</shader>
+</material> \ No newline at end of file
diff --git a/Samples/Hello/scripts/hello.lua.asr b/Samples/Hello/scripts/hello.lua.asr
deleted file mode 100644
index 87e3c43..0000000
--- a/Samples/Hello/scripts/hello.lua.asr
+++ /dev/null
@@ -1,3 +0,0 @@
-<script>
- <source>hello.lua</source>
-</script> \ No newline at end of file
diff --git a/Samples/Hello/scripts/hello.lua.axm b/Samples/Hello/scripts/hello.lua.axm
new file mode 100644
index 0000000..c1395fc
--- /dev/null
+++ b/Samples/Hello/scripts/hello.lua.axm
@@ -0,0 +1,3 @@
+<script>
+ <extern>hello.lua</extern>
+</script> \ No newline at end of file
diff --git a/Samples/Hello/scripts/tiledmapimporter.lua b/Samples/Hello/scripts/tiledmapimporter.lua
new file mode 100644
index 0000000..244aceb
--- /dev/null
+++ b/Samples/Hello/scripts/tiledmapimporter.lua
@@ -0,0 +1,7 @@
+local tiledMapImporter = AsuraEngine.Importer.New("tiledmap") --tiledmaptagtiledmap
+local TiledMapManager = require "TiledMapManager.lua"
+function tiledMapImporter:Load( data )
+
+end
+
+return tiledMapImporter \ No newline at end of file
diff --git a/Samples/Hello/scripts/tiledmapimporter.lua.axm b/Samples/Hello/scripts/tiledmapimporter.lua.axm
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Samples/Hello/scripts/tiledmapimporter.lua.axm
diff --git a/Samples/Hello/shaders/sh_thunder.axm b/Samples/Hello/shaders/sh_thunder.axm
new file mode 100644
index 0000000..e7ec04b
--- /dev/null
+++ b/Samples/Hello/shaders/sh_thunder.axm
@@ -0,0 +1,4 @@
+<shader>
+ <vertex>default.vert</vertex>
+ <fragment>thunder.frag</fragment>
+</shader> \ No newline at end of file