| 49 | } |
| 50 | |
| 51 | FORCE_INLINE static Vector3 GetVector3(const Value& value) |
| 52 | { |
| 53 | #if USE_LARGE_WORLDS |
| 54 | return GetDouble3(value); |
| 55 | #else |
| 56 | return GetFloat3(value); |
| 57 | #endif |
| 58 | } |
| 59 | |
| 60 | FORCE_INLINE static Vector4 GetVector4(const Value& value) |
| 61 | { |
no test coverage detected