<p dir="ltr">Hi Matus,</p>
<p dir="ltr">The object passed back is a IntValueObject, see include/osg/ValueObject header for its definition.</p>
<p dir="ltr">You can cast to this type and then access the Int.</p>
<p dir="ltr">Robert <br>
</p>
<div class="gmail_quote">On 12 May 2016 8:50 a.m., "Matus Gabriska" <<a href="mailto:matus.gabriska@gmail.com">matus.gabriska@gmail.com</a>> wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I have problem with extracting value from osg::Object instance returned by LuaScriptEngine.<br>
<br>
Here is example of C++ code of running script&#058;<br>
<br>
Code:<br>
<br>
osg::Parameters input;<br>
osg::Parameters output;<br>
<br>
input.push_back(transformNode);<br>
<br>
_luaScriptEngine->run(_script.get(), _entry, input, output);<br>
<br>
<br>
<br>
<br>
osg::Parameters is vector of osg::Object. After script is done, it populates<br>
output with osg::Object.<br>
<br>
This is LUA Script<br>
<br>
Code:<br>
<br>
function test(node)<br>
return 1254;<br>
end<br>
<br>
<br>
<br>
<br>
So in osg::Parameters output is now one osg::Object which contains integer value 1234. My question is how can i acces this value?Or somehow cast this osg::Object to integer.<br>
<br>
I think its stored in UserData because I printed some nodes in lua script and they contained UserData,so I tried object->getUserData() but then i stuck.<br>
<br>
Any ideas?<br>
<br>
Thank you.<br>
<br>
[/list]<br>
<br>
------------------<br>
Read this topic online here:<br>
<a href="http://forum.openscenegraph.org/viewtopic.php?p=67079#67079" rel="noreferrer" target="_blank">http://forum.openscenegraph.org/viewtopic.php?p=67079#67079</a><br>
<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</blockquote></div>