diff options
| author | jussi | 2024-04-17 00:35:58 +0300 |
|---|---|---|
| committer | jussi | 2024-04-17 00:35:58 +0300 |
| commit | 70b40f67824b3d612235c382aa83821c054fa51e (patch) | |
| tree | 5d594cc457d6fed8af87e31977a0b9352677a4f5 /examples/platformer | |
| parent | 41b67398247d9031aed4ca6e3ffd6799ec8b1bca (diff) | |
| download | reilua-enhanced-70b40f67824b3d612235c382aa83821c054fa51e.tar.gz reilua-enhanced-70b40f67824b3d612235c382aa83821c054fa51e.tar.bz2 reilua-enhanced-70b40f67824b3d612235c382aa83821c054fa51e.zip | |
Object libraries like Vector2 optimizations.
Diffstat (limited to 'examples/platformer')
| -rw-r--r-- | examples/platformer/main.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/platformer/main.lua b/examples/platformer/main.lua index 878311f..6c8e0c6 100644 --- a/examples/platformer/main.lua +++ b/examples/platformer/main.lua @@ -81,8 +81,8 @@ local function createMap() end function RL.init() - local monitorPos = Vec2:new( RL.GetMonitorPosition( monitor ) ) - local monitorSize = Vec2:new( RL.GetMonitorSize( monitor ) ) + local monitorPos = Vec2:newT( RL.GetMonitorPosition( monitor ) ) + local monitorSize = Vec2:newT( RL.GetMonitorSize( monitor ) ) RL.SetWindowTitle( "Platformer" ) RL.SetWindowState( RL.FLAG_WINDOW_RESIZABLE ) @@ -223,7 +223,7 @@ end function RL.update( delta ) if RL.IsWindowResized() then - winSize:set( RL.GetScreenSize() ) + winSize:setT( RL.GetScreenSize() ) end playerMovement( delta ) |
