Paperview3D: Phong and COLLADA.
category: general [glöplog]
kusma: is that what happens when the clowns get _too_ shitfaced? ;)
if i want to experiment flash on my mac, do i absolutely need CS 3 ???
no. just download the free flex sdk and you are set. http://flex.org/learn/?sdid=BHVYF
But for developing.. there is nothing good (free) on MacOS. Unless you pay for a license of FDT.
FlashDevelop3 on Windows is sweet.
FlashDevelop3 on Windows is sweet.
ok i'll try flashdevelop
in fact i'm not a graphics guy so it's just to align some lines of action script like, just for the sake of learning coding small 2d effects etc
in fact i'm not a graphics guy so it's just to align some lines of action script like, just for the sake of learning coding small 2d effects etc
I had same error as you... "Cannot access a property or method of a null object reference."
I have changed my object class to DAE and it's still not working :(
Help? :) Can you just send me the code so i can see how you did it?
I have changed my object class to DAE and it's still not working :(
Help? :) Can you just send me the code so i can see how you did it?
Well I'm not into that project anymore but if I recall right I later used PhongMaterial instead of ShadedMaterial:
I'm now looking at my other old as3 code and see ShadedMaterials commented out. I don't remember if they worked though and I don't have Flash installed right now so I can't check it out.
Code:
var materials:MaterialsList = new MaterialsList();
var phong:PhongMaterial = new PhongMaterial(light, 0xFFFFFF, 0x000000, 20);
materials.addMaterial(phong, "std01");
var sphere:DAE = new DAE();
sphere.load("content/sphere.dae", materials);
theScene.addChild(sphere);
I'm now looking at my other old as3 code and see ShadedMaterials commented out. I don't remember if they worked though and I don't have Flash installed right now so I can't check it out.