VRML:ROUTE 作为 PROTO 中的参数
我有一个带有 TouchSensor 的对象的原型,我想在创建对象时将不同的路由链接到它,
例如我
PROTO plate[]
{
Shape {..something..}
DEF TS TouchSensor {}
}
想用不同的路由进行调用
plate{ROUTE ...}
plate{ROUTE ...}
,但有一个原型
如何实现这一点?
谢谢
I have a PROTO of some object with TouchSensor and I'd like to link different ROUTEs to it when creating objects
e.g. I have
PROTO plate[]
{
Shape {..something..}
DEF TS TouchSensor {}
}
I want to call
plate{ROUTE ...}
plate{ROUTE ...}
with different ROUTEs, but having one PROTO
How to implement this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
IS
来公开原型中 TouchSensor 的事件。例如:
You would use
IS
to expose the event from the TouchSensor in the prototype.For example: