Map exec
Some checks failed
Build Dusk / build-linux (push) Successful in 1m40s
Build Dusk / build-psp (push) Failing after 1m38s

This commit is contained in:
2025-12-26 20:38:24 +10:00
parent 7940f4c487
commit 726233e55f
29 changed files with 152 additions and 33 deletions

View File

@@ -1,6 +1,7 @@
module('platform')
module('input')
module('scene')
module('map')
-- Default Input bindings.
if PLATFORM == "psp" then
@@ -37,4 +38,5 @@ else
end
end
sceneSet('map')
sceneSet('map')
mapLoad('map/testmap/testmap.dmf')

View File

@@ -3,4 +3,4 @@
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
add_asset(MAP map.json)
add_subdirectory(testmap)

View File

@@ -1,3 +0,0 @@
{
"mapName": "Test"
}

View File

@@ -0,0 +1,7 @@
# Copyright (c) 2025 Dominic Masters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
add_asset(MAP testmap.json)
add_asset(SCRIPT testmap.lua)

View File

@@ -0,0 +1,3 @@
{
"name": "Test"
}

View File

@@ -0,0 +1 @@
print('Test Map Script Run')

View File

@@ -1 +1 @@
print('map')
-- Map Scene