(value: SignalValue<number>)
| 236 | } |
| 237 | |
| 238 | protected setAbsoluteRotation(value: SignalValue<number>) { |
| 239 | this.rotation( |
| 240 | modify(value, unwrapped => |
| 241 | transformAngle(unwrapped, this.worldToParent()), |
| 242 | ), |
| 243 | ); |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * Represents the scale of this node in local space of its parent. |
nothing calls this directly
no test coverage detected