| 844 | } |
| 845 | |
| 846 | void Actor::SetLocalTransform(const Transform& value) |
| 847 | { |
| 848 | CHECK(!value.IsNanOrInfinity()); |
| 849 | if (_localTransform.Translation != value.Translation || _localTransform.Orientation != value.Orientation || _localTransform.Scale != value.Scale) |
| 850 | { |
| 851 | _localTransform = value; |
| 852 | OnTransformChanged(); |
| 853 | } |
| 854 | } |
| 855 | |
| 856 | void Actor::SetLocalPosition(const Vector3& value) |
| 857 | { |
no test coverage detected