, Jr. Member
Hi JY,
I had already downloaded the parser and LoadAsset example which is what is not working and causing me the issues listed above.
I also copied again the Dev branch at https://github.com/away3d/ (making sure I got the latest dev branch).
The project folder has the following class path added in that order:
- src
- away3d dev src
- parser src
But I still get the errors below.
On the blog of the Sparticle creator I also read a post saying that the parser is now part of Away3d starting from 4.1.x which adds to my confusion.
Here is a copy and paste of the compile output:
\parser\src\away3d\loaders\parsers\particleSubParsers\nodes\ParticleUVNodeSubParser.as(33): col: 47 Error:
Access of possibly undefined property UV_CYCLE through a reference with static type Class.
_cycleValue = new valueCls(ParticleUVNode.UV_CYCLE);
^
\parser\src\away3d\loaders\parsers\particleSubParsers\nodes\ParticleUVNodeSubParser.as(47): col: 48 Error:
Access of possibly undefined property UV_SCALE through a reference with static type Class.
_scaleValue = new valueCls(ParticleUVNode.UV_SCALE);
^
\parser\src\away3d\loaders\parsers\particleSubParsers\nodes\ParticleUVNodeSubParser.as(69): col: 130 Error:
Incorrect number of arguments. Expected no more than 4.
_particleAnimationNode = new ParticleUVNode(ParticlePropertiesMode.GLOBAL, _cycleValue.setter.generateOneValue(), 1, _axis, _formula);
^
\parser\src\away3d\loaders\parsers\particleSubParsers\nodes\ParticleUVNodeSubParser.as(71): col: 166 Error:
Incorrect number of arguments. Expected no more than 4.
_particleAnimationNode = new ParticleUVNode(ParticlePropertiesMode.GLOBAL, _cycleValue.setter.generateOneValue(), _scaleValue.setter.generateOneValue(), _axis, _formula);
^
\parser\src\away3d\loaders\parsers\particleSubParsers\nodes\ParticleUVNodeSubParser.as(74): col: 136 Error:
Incorrect number of arguments. Expected no more than 4.
_particleAnimationNode = new ParticleUVNode(ParticlePropertiesMode.LOCAL_STATIC, _cycleValue.setter.generateOneValue(), 2, _axis, _formula);
^
\parser\src\away3d\loaders\parsers\particleSubParsers\nodes\ParticleUVNodeSubParser.as(83): col: 136 Error:
Incorrect number of arguments. Expected no more than 4.
_particleAnimationNode = new ParticleUVNode(ParticlePropertiesMode.LOCAL_STATIC, _cycleValue.setter.generateOneValue(), 1, _axis, _formula);
^
\parser\src\away3d\loaders\parsers\particleSubParsers\nodes\ParticleUVNodeSubParser.as(85): col: 172 Error:
Incorrect number of arguments. Expected no more than 4.
_particleAnimationNode = new ParticleUVNode(ParticlePropertiesMode.LOCAL_STATIC, _cycleValue.setter.generateOneValue(), _scaleValue.setter.generateOneValue(), _axis, _formula);
^
\parser\src\away3d\loaders\parsers\particleSubParsers\nodes\ParticleUVNodeSubParser.as(88): col: 136 Error:
Incorrect number of arguments. Expected no more than 4.
_particleAnimationNode = new ParticleUVNode(ParticlePropertiesMode.LOCAL_STATIC, _cycleValue.setter.generateOneValue(), 2, _axis, _formula);
^
Build halted with errors (fcsh).
(fcsh)
Done(1)