From 9b27daefc225752f3f24ea862e9c2be13f8addf6 Mon Sep 17 00:00:00 2001 From: jussi Date: Sun, 18 Feb 2024 15:26:21 +0200 Subject: Process renamed to update to be more inline with naming of raylib and common convention. --- examples/basic_lighting/main.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/basic_lighting/main.lua') diff --git a/examples/basic_lighting/main.lua b/examples/basic_lighting/main.lua index 29104f2..1a5417e 100644 --- a/examples/basic_lighting/main.lua +++ b/examples/basic_lighting/main.lua @@ -91,8 +91,8 @@ function RL.init() table.insert( lights, RL.CreateLight( RL.LIGHT_POINT, { 2, 1, -2 }, RL.Vector3Zero(), RL.BLUE, shader ) ) end -function RL.process( delta ) - camera:process( delta ) +function RL.update( delta ) + camera:update( delta ) -- Check key inputs to enable/disable lights. if RL.IsKeyPressed( RL.KEY_Y ) then -- cgit v1.2.3