Skip to content

Commit

Permalink
Merge pull request #196 from Ark2000/timescale-fix
Browse files Browse the repository at this point in the history
fix: timescale 0.993
  • Loading branch information
worron authored Sep 11, 2024
2 parents 5f09ad4 + 9f8dbf8 commit bbf5a1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/panku_console/modules/engine_tools/opt.gd
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ func toggle_2d_debug_draw():
func reload_current_scene():
_module.reload_current_scene()

@export_range(0.1, 2.0) var time_scale := 1.0:
@export_range(0.1, 10.0, 0.01) var time_scale := 1.0:
set(v):
time_scale = v
_module.set_time_scale(time_scale)

@export var readonly_performance_info:String:
get:
return _module.get_performance_info()
return _module.get_performance_info(false)

0 comments on commit bbf5a1c

Please sign in to comment.