Changeset 6703
- Timestamp:
- 2015-07-01 18:28:37 (8 years ago)
- Location:
- 2015/27/ohjaajat/TheLegendOfGabriel/TheLegendOfGabriel
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/27/ohjaajat/TheLegendOfGabriel/TheLegendOfGabriel/TheLegendOfGabriel/LevelCreation.cs
r6702 r6703 39 39 level.SetObjectMethod("blockade", CreateBlock); 40 40 level.SetObjectMethod("coyote", CreateCoyote); 41 level.SetObjectMethod("boss", CreateBoss); 41 42 level.Execute(); 42 43 43 44 Level.Background.Color = Color.Black; 45 } 46 47 void CreateBoss(Vector position, double width, double height, Angle angle, Shape shape, string name, Dictionary<string, string> properties) 48 { 49 var bossHealth = new IntMeter(10); 50 51 var bossTimer = new Timer(); 52 bossTimer.Interval = 4; 53 bossTimer.Timeout += delegate 54 { 55 56 }; 57 bossTimer.Start(); 44 58 } 45 59 -
2015/27/ohjaajat/TheLegendOfGabriel/TheLegendOfGabriel/TheLegendOfGabriel/TheLegendOfGabriel.cs
r6702 r6703 136 136 [AssetName("coyoteright", mirror: true)] 137 137 private Animation coyoteLeft; 138 [AssetName("coyotedown")] 139 private Animation coyoteDown; 140 141 [AssetName("coyotedown")] 142 private Animation coyoteDown; 138 143 [AssetName("coyotedown")] 139 144 private Animation coyoteDown; -
2015/27/ohjaajat/TheLegendOfGabriel/TheLegendOfGabriel/TheLegendOfGabrielContent/TheLegendOfGabrielContent.contentproj
r6702 r6703 293 293 </Compile> 294 294 </ItemGroup> 295 <ItemGroup> 296 <Compile Include="carriage.anim"> 297 <Name>carriage</Name> 298 <Importer>AnimationImporter</Importer> 299 <Processor>AnimationContentProcessor</Processor> 300 </Compile> 301 <Compile Include="train.anim"> 302 <Name>train</Name> 303 <Importer>AnimationImporter</Importer> 304 <Processor>AnimationContentProcessor</Processor> 305 </Compile> 306 </ItemGroup> 295 307 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 296 308 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
2015/27/ohjaajat/TheLegendOfGabriel/TheLegendOfGabriel/TheLegendOfGabrielContent/bossroom.tmx
r6702 r6703 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 <map version="1.0" orientation="orthogonal" renderorder="right-down" width="15" height="20" tilewidth="20" tileheight="20" nextobjectid=" 4">2 <map version="1.0" orientation="orthogonal" renderorder="right-down" width="15" height="20" tilewidth="20" tileheight="20" nextobjectid="5"> 3 3 <tileset firstgid="1" source="LegendOfGabrielTileset.tsx"/> 4 4 <layer name="base" width="15" height="20"> … … 23 23 <object id="3" x="280" y="260" width="20" height="20"/> 24 24 </objectgroup> 25 <objectgroup color="#8a0f0f" name="boss"> 26 <object id="4" x="140" y="40" width="20" height="20"/> 27 </objectgroup> 25 28 </map>
Note: See TracChangeset
for help on using the changeset viewer.