Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 11444


Ignore:
Timestamp:
May 30, 2017, 2:58:20 PM (7 years ago)
Author:
patricwi
Message:

merged Boss Level

Location:
code/branches/Presentation_FS17
Files:
6 edited
4 copied

Legend:

Unmodified
Added
Removed
  • code/branches/Presentation_FS17

  • code/branches/Presentation_FS17/data/levels/Endurancefinal.oxw

    r11357 r11444  
    3737      </templates>
    3838    </ModularSpaceShip>
     39
     40    <StaticEntity position="0,-10000,0" direction="0,-1,0" collisionType=static mass=100000 friction=0.01 >
     41    <attached>
     42        <Model position="0,0,0" mesh="cube.mesh" scale3D="10000,10000,1000" />
     43    </attached>
     44    <collisionShapes>
     45        <BoxCollisionShape position="0,0,0" halfExtents="10000,10000,1000" />
     46    </collisionShapes>
     47</StaticEntity>
     48
     49
     50   
    3951   
    4052  </Scene>
  • code/branches/Presentation_FS17/data/levels/includes/weaponSettingsEscort.oxi

    r11052 r11444  
    1414        </links>
    1515        <Weapon>
    16           <HsW01 mode=0 munitionpershot=1 delay=0.125 damage=9.3 material="Flares/point_lensflare" muzzleoffset=" 0.1, 1.6,-2" projectileMesh="LaserBeam2.mesh" />
     16          <!--<HsW01 mode=0 munitionpershot=1 delay=0.125 damage=9.3 material="Flares/point_lensflare" muzzleoffset=" 0.1, 1.6,-2" projectileMesh="LaserBeam2.mesh" /> -->
     17          <IceGun mode=0 munitionpershot=1 delay=0.125 damage=9.3 material="Flares/point_lensflare" muzzleoffset=" 0.1, 1.6,-2" projectileMesh="LaserBeam2.mesh" />
    1718        </Weapon>
    1819        <Weapon>
     
    2829    <munition>
    2930      <LaserMunition initialmagazines=8 maxmagazines=8 munitionpermagazine=10 replenishamount=1 replenishinterval=7.5/>
     31     
    3032    </munition>
  • code/branches/Presentation_FS17/data/levels/shieldTest.oxw

    r11052 r11444  
    99  include("HUDTemplates3.oxo")
    1010  include("stats.oxo")
    11   include("templates/spaceshipImmTest.oxt")
     11  include("templates/spaceshipAssff.oxt")
    1212  include("templates/lodInformation.oxt")
    1313?>
     
    6161      for i = 1, 10, 1 do
    6262    ?>
    63       <SpawnPoint position="<?lua print(math.random() * 1000 - 500) ?>,<?lua print(math.random() * 1000 - 500) ?>,<?lua print(math.random() * 1000 - 500) ?>" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipimmtest />
     63      <SpawnPoint position="<?lua print(math.random() * 1000 - 500) ?>,<?lua print(math.random() * 1000 - 500) ?>,<?lua print(math.random() * 1000 - 500) ?>" lookat="0,0,0" spawnclass=SpaceShip pawndesign=spaceshipassff />
    6464    <?lua end ?>
    6565
  • code/branches/Presentation_FS17/src/modules/weapons/weaponmodes/IceGun.cc

    r11108 r11444  
    5151        RegisterObject(IceGun);
    5252
    53         // Default values
     53        // Default val
    5454        this->reloadTime_ = 1.0f;
    5555        this->damage_ = 0.0f;
  • code/branches/Presentation_FS17/src/orxonox/items/PartDestructionEvent.cc

    r11099 r11444  
    6969        XMLPortParam(PartDestructionEvent, "value", setEventValue, getEventValue, xmlelement, mode).defaultValues(0);
    7070        XMLPortParam(PartDestructionEvent, "message", setMessage, getMessage, xmlelement, mode).defaultValues("NULL");
     71        //MLPortPAram(PartDestructionEvent, "spawn", setSpawn, getSpawn, xmlelement, mode).defaultValues("NULL");
    7172
    7273        /*
     
    100101            case TargetParam::shieldhealth:
    101102                this->parent_->getParent()->setShieldHealth(operate(this->parent_->getParent()->getShieldHealth()));
     103                break;
     104            case TargetParam::maxshieldhealth:
     105                this->parent_->getParent()->setMaxShieldHealth(operate(this->parent_->getParent()->getMaxShieldHealth()));
    102106                break;
    103107            case TargetParam::boostpower:
Note: See TracChangeset for help on using the changeset viewer.