Initialize class variables with default values in scene/ [1/2]

This commit is contained in:
Rafał Mikrut 2021-02-07 22:29:31 +01:00
parent 57e2822a05
commit 003bb8e1a8
139 changed files with 871 additions and 1652 deletions

View file

@ -40,10 +40,10 @@ class RemoteTransform3D : public Node3D {
ObjectID cache;
bool use_global_coordinates;
bool update_remote_position;
bool update_remote_rotation;
bool update_remote_scale;
bool use_global_coordinates = true;
bool update_remote_position = true;
bool update_remote_rotation = true;
bool update_remote_scale = true;
void _update_remote();
void _update_cache();