Visual SceneMaker is an authoring tool for creating interactive presentations aimed to non-programming experts. It supports the modeling of verbal and non-verbal behavior of Virtual Characters and robots. Therefore, it provides users with a graphical interface and a simple scripting language that allows them to create rich and compelling content.
When executing:
Anna: [LookAtObject name=Camera].
, theActionFeature.getVal()
returns onlyCamera
;Anna: [LookAtObject name='Camera'].
-->'Camera'
.This is rather unexpected. I would expect the parser to remove the single quotes.
This make it difficult to have a SPACES in actions parameter values, as quotes are there mandatory.
Anna: [LookAtObject name=Main Camera].
doesn't parse.Anna: [LookAtObject name="Main Camera"].
doesn't parse.Anna: [LookAtObject name='Main Camera'].
is parsing correctly but the parameter value contains ALSO the single quotesActionFeature.getVal()
--> 'Main Camera'`.