Skip to content

Commit

Permalink
Window name modified
Browse files Browse the repository at this point in the history
  • Loading branch information
Angar0Os committed Nov 19, 2024
1 parent ba3544f commit 67bd0bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions scene_capture_texture.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ hg.InputInit()
hg.WindowSystemInit()

res_x, res_y, tex_size = 1024, 1024, 1024
win = hg.RenderInit('Scene Capture Texture', res_x, res_y, hg.RF_VSync | hg.RF_MSAA4X)
win = hg.RenderInit('Scene Capture Texture - Press SpaceBar to capture', res_x, res_y, hg.RF_VSync | hg.RF_MSAA4X)

-- Link precompiled assets folder to the project
hg.AddAssetsFolder("resources_compiled")
Expand Down Expand Up @@ -79,4 +79,3 @@ end

hg.RenderShutdown()
hg.DestroyWindow(win)

2 changes: 1 addition & 1 deletion scene_capture_texture.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
hg.WindowSystemInit()

res_x, res_y, tex_size = 1024, 1024, 1024
win = hg.RenderInit('Scene Capture Texture', res_x, res_y, hg.RF_VSync | hg.RF_MSAA4X)
win = hg.RenderInit('Scene Capture Texture - Press SpaceBar to capture', res_x, res_y, hg.RF_VSync | hg.RF_MSAA4X)


#Link precompiled assets folder to the project
Expand Down

0 comments on commit 67bd0bd

Please sign in to comment.