(value: SignalValue<PossibleVector2>)
| 201 | } |
| 202 | |
| 203 | protected setAbsolutePosition(value: SignalValue<PossibleVector2>) { |
| 204 | this.position( |
| 205 | modify(value, unwrapped => |
| 206 | transformVectorAsPoint(new Vector2(unwrapped), this.worldToParent()), |
| 207 | ), |
| 208 | ); |
| 209 | } |
| 210 | |
| 211 | /** |
| 212 | * Represents the rotation (in degrees) of this node relative to its parent. |
nothing calls this directly
no test coverage detected