VRML: МАРШРУТ как параметр в PROTO - PullRequest
1 голос
/ 05 октября 2011

У меня есть ПРОТО некоторого объекта с TouchSensor, и я хотел бы связать различные МАРШРУТЫ с ним при создании объектов

например, у меня есть

PROTO plate[]
{
  Shape {..something..}
  DEF TS TouchSensor {} 
}

Я хочу позвонить

plate{ROUTE ...}
plate{ROUTE ...}

с разными МАРШРУТАМИ, но с одним ПРОТО

Как это реализовать?

Спасибо

1 Ответ

1 голос
/ 06 октября 2011

Вы бы использовали IS для показа события от TouchSensor в прототипе.

Например:

#VRML V2.0 utf8

# First, define the prototype "plate".
PROTO plate [
    eventOut SFTime touched
    exposedField SFVec3f translation 0 0 0
]{

    Transform {
        translation IS translation
        children Shape{
            appearance Appearance {material Material {}}
            geometry Sphere{}
        }
    }
    TouchSensor{touchTime IS touched}
}


# Then create one or several instances of the object
DEF plate1 plate{translation -2 0 0}
DEF plate2 plate{translation 2 0 0}



DEF myscript Script{
    eventIn SFTime receive_event
    url "javascript:
    function receive_event(){
        trace('A sphere was clicked');
    }
    "
}

# Each instance had a different DEF name, so you can choose where to send the event independently from each other
# but for the example, I send them both to a script that says in the console when it was clicked
ROUTE plate1.touched TO myscript.receive_event
ROUTE plate2.touched TO myscript.receive_event
...