iuno just screwing around tbh
Some checks failed
Build Dusk / build-linux (push) Failing after 1m5s
Build Dusk / build-psp (push) Failing after 1m24s

This commit is contained in:
2025-12-24 10:44:53 +10:00
parent aed202ebf9
commit f39b2060a8
15 changed files with 72 additions and 32 deletions

View File

@@ -4,4 +4,5 @@
# https://opensource.org/licenses/MIT
add_asset(SCRIPT test.lua)
add_asset(SCRIPT test2.lua)
add_subdirectory(scene)

5
assets/script/init.lua Normal file
View File

@@ -0,0 +1,5 @@
print('Init')
-- Load map scene
setScene('map')
setMap()

View File

@@ -0,0 +1,4 @@
# Copyright (c) 2025 Dominic Masters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT

View File

@@ -1,5 +0,0 @@
include('script/test2')
player = entityAdd(ENTITY_TYPE_PLAYER, 3, 6, 1)
print("Player entity ID: " .. player)

View File

@@ -1 +0,0 @@
print("This is test2.lua")