Files
JuegoSim/plantuml/Assets/_Project/Scripts/Code/Movement Scripts/GizmoMoveElement.puml
T
2026-07-21 08:56:10 +03:00

15 lines
259 B
Plaintext

@startuml
enum GizmoDirection {
X,
Y,
Z,
}
class GizmoMoveElement {
+ getDirection() : GizmoDirection
+ onSelectEnter() : void
+ onSelectExit() : void
+ ResetMat() : void
}
MonoBehaviour <|-- GizmoMoveElement
@enduml