mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
9 lines
183 B
JavaScript
Executable File
9 lines
183 B
JavaScript
Executable File
import Action from "./Actions"
|
|
|
|
export default class RemoveAllNodes extends Action {
|
|
|
|
fire() {
|
|
this.blueprint.removeGraphElement(...this.blueprint.getNodes(true))
|
|
}
|
|
}
|