SceneMaker / VisualSceneMaker

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.
http://scenemaker.dfki.de
Other
18 stars 11 forks source link

VSM lets introduce negative values to time edges #156

Closed acepero13 closed 8 years ago

mfallas commented 8 years ago

Our solution: On TEdge.java modify setTimeout function with and exception ( which is already caught at the view) when the timeout value is invalid.

public void setTimeout(long value) throws Exception { if(value >= 0){ mTimeout = value; }else{ throw new Exception("Invalid Time Out Egde Value"); } }