AngelScript,如何加载脚本文件?
我知道如何将 C++ 函数绑定到 AngelScript,但在我的 C++ 代码中,如何加载 .as 脚本文件?我怎样才能在我的 C++ 中说“现在执行 myscript.as!” ?
在 AngelScript API 中,我没有找到任何像“LoadScript”或“ExecuteScript”这样的函数。 或者我是否必须在 AngelScript 加载所有脚本的某个位置定义一个路径,并且我不需要告诉它确切的文件?
I know how I can bind C++ functions to AngelScript, but in my C++ code, how do I load an .as script file? How can I say in my C++ "Execute myscript.as now!" ?
In the AngelScript API I don't find any function like "LoadScript" or "ExecuteScript".
Or do I have to define a path somewhere from where AngelScript loads all scripts and I don't need to tell it the exact files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
刚刚发现(在文档中的一个小句子中):
AngelScript 不提供内置文件加载。这就是为什么没有API函数的原因。所以手动加载确实是唯一的办法。
Just found it out (in a small side sentence in the docs):
AngelScript doesn't provide a build in file loading. That's why there is no API function. So the manual loading is indeed the only way.
asIScriptModule::AddScriptSection 将加载脚本字符串。 asIScriptContext::Execute 将执行脚本中的函数。 文档对所有这些都非常清楚;你可能想看一下。
asIScriptModule::AddScriptSection will load a script string. asIScriptContext::Execute will execute a function from a script. The documentation was pretty clear about all of this; you might want to give it a look.