windrobin / papervision3d

Automatically exported from code.google.com/p/papervision3d
0 stars 0 forks source link

The Sphere Panorama FlexSDK example will not compile #192

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. compile the panorama sample:
mxmlc as3/trunk/examples/FlexSDK/SpherePanorama/src/PV3D_GW_SpherePano.as

resulting error:
./as3/trunk/examples/FlexSDK/SpherePanorama/src/com/unitzeroone/pv3d/SpherePano.
as(27):
col: 38 Error: Access of possibly undefined property FREE through a
reference with static type Class.
                        super(0, 0, true, false, Camera3D.FREE);

Flex3.3, Papervision3D version 2.0.0

fix:
constant is now part of CameraType instead of Camera3D

diff (also attached) for SpherePano.as:
27c27
<                       super(0, 0, true, false, Camera3D.FREE);

---
>                       super(0, 0, true, false, CameraType.FREE);

Original issue reported on code.google.com by 2005jimm...@gmail.com on 5 May 2009 at 11:40

Attachments: