17 lines
396 B
Plaintext
17 lines
396 B
Plaintext
@startuml
|
|
class PlatformUI {
|
|
- platformManager : VirtualPlatformManager
|
|
- xAxisButton : Button
|
|
- yAxisButton : Button
|
|
- zAxisButton : Button
|
|
- moveUpButton : Button
|
|
- moveDownButton : Button
|
|
- moveStep : float = 1f
|
|
- gridToggle : Toggle
|
|
- Start() : void
|
|
- SetupButtons() : void
|
|
- Update() : void
|
|
}
|
|
MonoBehaviour <|-- PlatformUI
|
|
@enduml
|