-- AddXFile( ID, X, Y, Z, XFileName, FLAGS, movieRGB, movieAlpha, linked ) -- AddSprite( ID, X, Y, W, H, PicFileName, FLAGS, movie, linked ); -- Flags: a combination of the following: VISIBLE, ACTIVE, HASALPHA function main() -- This is a 3D scene Is3D( TRUE ); -- Displayable items AddXFile( 0, 0, 0, 0, "pano_garden.x", VISIBLE, 0, 0 ); AddXFile( OPigeons1, 0, 0, 0, "pigeons1.x", VISIBLE, 3, 0 ); AddXFile( OPigeons2, 0, 0, 0, "pigeons2.x", VISIBLE, 4, 0 ); AddXFile( OPigeons3, 0, 0, 0, "pigeons3.x", VISIBLE, 5, 0 ); AddXFile( OVulture, 0, 0, 0, "vulture.x", VISIBLE, 2, 0 ); AddXFile( Warrick, 0, 0, 0, "warrick.x", VISIBLE, 1, 0 ); -- Hotspots AddXFile( HGardenPanoGarbage, 0, 0, 0, "hs_garbage.x", ACTIVE, 0, 0, GardenGarbageFar ); AddXFile( HGardenPanoPrints, 0, 0, 0, "hs_prints.x", ACTIVE, 0, 0, GardenDisturbed ); AddXFile( HGardenPanoShed, 0, 0, 0, "hs_shed.x", ACTIVE, 0, 0, GardenShed ); AddXFile( HGardenPanoWarrick, 0, 0, 0, "hs_warrick.x", ACTIVE, 0, 0, GardenWarrick ); end