Hi,
the <
scene> elements are krpano-
array-elements.
Removing such
array item is possibly either by setting the name of that item to null - then the item will remove itself from the
array:
|
Source code
|
1
|
set(scene[name_of_the_scene].name, null);
|
or by calling
removearrayitem (a function mainly from the krpano plugin interface, but that is also available in the xml):
|
Source code
|
1
|
scene.removearrayitem(name_of_the_scene);
|
Best regards,
Klaus