diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-07-02 08:38:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-02 08:38:28 +0200 |
commit | ecee0c92ff86911fa50e745b4ab98196e0d2afe4 (patch) | |
tree | 6fd057d2b378d5b31b5a0ab0f70ebdee2b2eecf4 | |
parent | c02d8be59d890653df2626888b8d976fbaa8be58 (diff) | |
parent | 008e8266bb83a498e43125ed2017f0aec74f4f53 (diff) |
Merge pull request #19905 from AndreaCatania/no3d_2
Removed two skeleton parameter from compilation width no 3d
-rw-r--r-- | scene/3d/skeleton.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/3d/skeleton.h b/scene/3d/skeleton.h index d4c3685f51..9672acb57a 100644 --- a/scene/3d/skeleton.h +++ b/scene/3d/skeleton.h @@ -80,8 +80,10 @@ class Skeleton : public Spatial { ignore_animation = false; custom_pose_enable = false; disable_rest = false; +#ifndef _3D_DISABLED physical_bone = NULL; cache_parent_physical_bone = NULL; +#endif // _3D_DISABLED } }; |