混乱 - 在标记处运行方法?
标记似乎被设计为在另一个时间线的某个点上运行一个时间线。有没有办法在标记而不是时间轴上运行普通方法?
Markers seem to be designed to run a timeline at a point in another timeline. Is there any way to run an ordinary method at a marker, rather than a timeline?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,ClutterTimeline 上的标记可以运行任何函数。只需使用 ClutterTimeline::marker-reached 信号即可。如果您对特定标记感兴趣,您可以使用标记名称来详细说明信号,例如:
当到达标记 my-marker 时,时间线将调用 *on_my_marker_reached* 回调。
no, markers on ClutterTimeline can run any function. just use the ClutterTimeline::marker-reached signal. if you are interested in a specific marker, you can detail the signal using the marker name, e.g.:
and the timeline will call the *on_my_marker_reached* callback when the marker my-marker has been reached.