Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 23, 2011, 11:26:08 PM (13 years ago)
Author:
dafrick
Message:

Some cleanup. Ready for merge.

Location:
code/branches/pickup/data/levels
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pickup/data/levels/includes/pickups.oxi

    r8543 r8554  
    202202<PickupRepresentation
    203203    pickupName = "Drone Pickup"
    204     pickupDescription = "Adds a Drone to the Players Spaceship"
     204    pickupDescription = "Adds a Drone to the Player's Spaceship"
    205205    spawnerTemplate = "dronepickupRepresentation"
    206206>
     
    213213
    214214<PickupRepresentation
    215     pickupName = "Shrink Pickup"
    216     pickupDescription = "Adds a Drone to the Players Spaceship"
     215    pickupName = "Small Shrink"
     216    pickupDescription = "Shrinks the Ship by a bit"
    217217    spawnerTemplate = "smallshrinkpickupRepresentation"
    218218>
     
    222222</PickupRepresentation>
    223223
     224<PickupRepresentation
     225    pickupName = "Medium Shrink"
     226    pickupDescription = "Shrinks the Ship"
     227    spawnerTemplate = "mediumshrinkpickupRepresentation"
     228>
     229    <pickup>
     230        <ShrinkPickup template=mediumshrinkpickup />
     231    </pickup>
     232</PickupRepresentation>
     233
     234<PickupRepresentation
     235    pickupName = "Huge Shrink"
     236    pickupDescription = "Shrinks the Ship considerably"
     237    spawnerTemplate = "hugeshrinkpickupRepresentation"
     238>
     239    <pickup>
     240        <ShrinkPickup template=hugeshrinkpickup />
     241    </pickup>
     242</PickupRepresentation>
     243
  • code/branches/pickup/data/levels/pickups.oxw

    r8543 r8554  
    190190    </PickupSpawner>
    191191
    192     <PickupSpawner position="-30,-30,-30" respawnTime="60" triggerDistance="20" maxSpawnedItems="5">
     192    <PickupSpawner position="-25,-50,-125" respawnTime="60" triggerDistance="20" maxSpawnedItems="5">
    193193      <pickup>
    194194        <ShrinkPickup template ="smallshrinkpickup"/>
    195195      </pickup>
    196196    </PickupSpawner>
     197
     198    <PickupSpawner position="0,-50,-125" respawnTime="60" triggerDistance="20" maxSpawnedItems="5">
     199      <pickup>
     200        <ShrinkPickup template ="mediumshrinkpickup"/>
     201      </pickup>
     202    </PickupSpawner>
     203
     204    <PickupSpawner position="25,-50,-125" respawnTime="60" triggerDistance="20" maxSpawnedItems="5">
     205      <pickup>
     206        <ShrinkPickup template ="hugeshrinkpickup"/>
     207      </pickup>
     208    </PickupSpawner>
     209
     210    <!--StaticEntity position="0,-200,0" direction="0,-1,0" collisionType=static mass=500 friction=0.01 >
     211      <attached>
     212        <Model position="0,0,0" mesh="cube.mesh" scale3D="10,10,10" />
     213      </attached>
     214      <collisionShapes>
     215        <BoxCollisionShape position="0,0,0" halfExtents="10,10,10" />
     216      </collisionShapes>
     217  </StaticEntity-->
    197218
    198219  </Scene>
  • code/branches/pickup/data/levels/templates/pickupRepresentationTemplates.oxt

    r8543 r8554  
    403403                    <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Sphere2" scale=0.1>
    404404                        <attached>
    405                             <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Shrink" scale=0.9 />
     405                            <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Shrink" scale=0.4 />
    406406                        </attached>
    407407                    </Billboard>
     
    414414<Template name=smallshrinkpickup>
    415415  <InvisiblePickup
    416     duration = 20.0
     416    duration = 10.0
     417    shrinkFactor = 2.5
    417418    activaionType = "immediate"
    418419    durationType = "continuous"
     
    425426            <StaticEntity>
    426427                <attached>
    427                     <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Sphere2" scale=0.2>
    428                         <attached>
    429                             <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Shrink" scale=2.0 />
     428                    <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Sphere2" scale=0.1>
     429                        <attached>
     430                            <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Shrink" scale=0.7 />
    430431                        </attached>
    431432                    </Billboard>
     
    438439<Template name=mediumshrinkpickup>
    439440  <InvisiblePickup
    440     duration = 20.0
     441    duration = 30.0
     442    shrinkFactor = 5.0
    441443    activaionType = "immediate"
    442444    durationType = "continuous"
     
    449451            <StaticEntity>
    450452                <attached>
    451                     <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Sphere2" scale=0.3>
    452                         <attached>
    453                             <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Shrink" scale=3.0 />
     453                    <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Sphere2" scale=0.1>
     454                        <attached>
     455                            <Billboard position="0,0,0" colour="1.0,0.55,1.0" material="Shrink" scale=1.0 />
    454456                        </attached>
    455457                    </Billboard>
     
    462464<Template name=hugeshrinkpickup>
    463465  <InvisiblePickup
    464     duration = 20.0
     466    duration = 60.0
     467    shrinkFactor = 10.0
    465468    activaionType = "immediate"
    466469    durationType = "continuous"
Note: See TracChangeset for help on using the changeset viewer.