Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个模型鸭并想跟踪它的位置,即 x、y、z 值,下面是我的代码。但是,它返回[Object Float32Array]了,我不知道这是什么,如何解释它?
[Object Float32Array]
duck.getPosition().toString();
而不是使用duck.getPosition().toString()use duck.getPosition()。 toString()不输出类型化数组的实际内容。
duck.getPosition().toString()
duck.getPosition()
toString()