New object types for Image, Texture, RenderTexture, Camera2D, Camera3D and Shader.
This commit is contained in:
@@ -1,10 +1,18 @@
|
||||
local textColor = RL.BLACK
|
||||
local textPos = { 192, 200 }
|
||||
local text = "Congrats! You created your first window!"
|
||||
local texture = nil
|
||||
|
||||
function RL.init()
|
||||
RL.SetWindowTitle( "First window" )
|
||||
RL.SetWindowState( RL.FLAG_VSYNC_HINT )
|
||||
|
||||
local path = RL.GetBasePath().."../resources/images/cat.png"
|
||||
print( "path", path )
|
||||
|
||||
texture = RL.LoadTexture( path )
|
||||
|
||||
print( "texture", texture )
|
||||
end
|
||||
|
||||
function RL.process( delta )
|
||||
@@ -24,5 +32,6 @@ end
|
||||
|
||||
function RL.draw()
|
||||
RL.ClearBackground( RL.RAYWHITE )
|
||||
RL.DrawTexture( texture, { 20, 20 }, RL.WHITE )
|
||||
RL.DrawText( 0, text, textPos, 20, 2, textColor )
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user