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