标签:io ar cti html c++ htm app ef
What about the callback in Unigine?
Any function from system, world or editor scripts can be called in a C++ code. UnigineScript functions that are called from an external code are known as callbacks. Via callbacks scripts can communicate with each other, as well as with the external application.
The sequence of function call will be as follows:
在脚本中函数的调用顺序是,先调用init()函数,然后调用exportecd function runWorldFunction(),因为runWorldFunction()中调用了脚本中的函数callback(),所以runWorldFunction()会先调用callback(),也就是说在脚本中会先执行callback().
标签:io ar cti html c++ htm app ef
原文地址:http://www.cnblogs.com/wzheng/p/3893401.html