| Shortcut | Action |
|---|---|
Esc |
Cancels Blender functions without changes |
Space |
Open the toolbox |
Tab |
Start or quit edit mode |
F1 |
Loads a Blender file, changes the window to a file window |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {ChangeDetectorRef} from "@angular/core"; | |
| export class StatefulComponent<T> { | |
| private _state: T; | |
| get state() { | |
| return this._state; | |
| } | |
| set state(value: T) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {ChangeDetectorRef} from "@angular/core"; | |
| export class StateManager<T> { | |
| private _state: T; | |
| get state() { | |
| return this._state; | |
| } | |
| set state(value: T) { |