### Gizmo3D Signals (C# and GDScript) Source: https://github.com/chrisizeful/gizmo3d/blob/main/README.md This snippet lists the signals emitted by the Gizmo3D node, showing their equivalent names in both C# and GDScript for seamless integration into Godot projects. ```C# TransformBegin TransformChanged TransformEnd ``` ```GDScript transform_begin transform_changed transform_end ``` -------------------------------- ### Gizmo3D Overridable Transformations (C# and GDScript) Source: https://github.com/chrisizeful/gizmo3d/blob/main/README.md This snippet outlines the overridable transformation methods in Gizmo3D, providing the C# method names and their corresponding GDScript function names for customization of transformation behavior. ```C# EditTranslate() EditScale() EditRotate() ``` ```GDScript _edit_translate() _edit_scale() _edit_rotate() ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.