Dad72 Posted May 12, 2014 Share Posted May 12, 2014 It may be me ca comes, but this is what happens and I do not understand why: Today when I want to retrieve the position of an object. it constantly returns me 0,0,0 if I do: console.log(objet3d.position);return 0,0,0 if I do: console.log(objet3d);and if I'll see the position, I have the good values I use the latest update yesterday babylon (2014-05-11) Quote Link to comment Share on other sites More sharing options...
gwenael Posted May 12, 2014 Share Posted May 12, 2014 Could it be because of late evaluation? Your first console.log prints the value of position when the line of code is hit whereas console.log(objet3d) prints objet3d and you get its position only when you extend objet3d in the javascript console. Quote Link to comment Share on other sites More sharing options...
Dad72 Posted May 12, 2014 Author Share Posted May 12, 2014 I managed to find the problem. This is good. It looked like what what you say Gwenael. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.