Renamed fixed_process to physics_process

This commit is contained in:
AndreaCatania
2017-09-30 16:19:07 +02:00
parent 4f39ce32b9
commit 4537977d6d
75 changed files with 296 additions and 296 deletions

View File

@ -43,14 +43,14 @@ class Performance : public Object {
static void _bind_methods();
float _process_time;
float _fixed_process_time;
float _physics_process_time;
public:
enum Monitor {
TIME_FPS,
TIME_PROCESS,
TIME_FIXED_PROCESS,
TIME_PHYSICS_PROCESS,
MEMORY_STATIC,
MEMORY_DYNAMIC,
MEMORY_STATIC_MAX,
@ -83,7 +83,7 @@ public:
String get_monitor_name(Monitor p_monitor) const;
void set_process_time(float p_pt);
void set_fixed_process_time(float p_pt);
void set_physics_process_time(float p_pt);
static Performance *get_singleton() { return singleton; }