expose method for retrieving all child entities

This commit is contained in:
Nick Fisher
2024-03-26 00:24:21 +08:00
parent 849ad6c530
commit b357144a79
13 changed files with 101 additions and 21 deletions

View File

@@ -215,6 +215,13 @@ class _AssetSubmenuState extends State<AssetSubmenu> {
},
child: const Text("Add point light"),
),
MenuItemButton(
onPressed: () async {
await widget.controller
.addLight(3, 6500, 15000000, 0, 1, 0, 0, -1, 0, true);
},
child: const Text("Add spot light"),
),
MenuItemButton(
onPressed: () async {
await widget.controller.clearLights();