Changed Include Paths

This commit is contained in:
OusmBlueNinja 2025-01-03 14:57:22 -06:00
parent fa4252b593
commit 77c834fa82
3 changed files with 5 additions and 8 deletions

View File

@ -1,6 +1,6 @@
-- script.lua -- script.lua
local Math = require("./assets/scripts/math") -- Require the enhanced math module local Math = require("math") -- Require the enhanced math module
local Engine = require("./assets/scripts/engine") local Engine = require("engine")
local GameObjectName = "Bacround" local GameObjectName = "Bacround"

View File

@ -1,10 +1,7 @@
-- script.lua -- script.lua
local Math = require("./assets/scripts/math") local Engine = require("engine")
local Engine = require("./assets/scripts/engine")
local itterator = 0
local ticks = 0
local new_rotation = 0 local new_rotation = 0
local speed = 50 local speed = 50

View File

@ -14,8 +14,8 @@ local GameObjectName = "Gun" -- This is the tag of the game object you want it t
local Math = require("./assets/scripts/math") -- Require the enhanced math module local Math = require("math") -- Require the enhanced math module
local Engine = require("./assets/scripts/engine") local Engine = require("engine")
-- Variables to track elapsed time and rotation -- Variables to track elapsed time and rotation