Changeset 6038
- Timestamp:
- 2015-06-11 19:07:20 (8 years ago)
- Location:
- 2015/24/ohjaajat/Dungeon/Dungeon
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/24/ohjaajat/Dungeon/Dungeon/Dungeon/Dungeon.cs
r6037 r6038 173 173 Image[] vihuKuvat = LoadImages((from i in Enumerable.Range(1, 10) select String.Format("v{0:0000}", i)).ToArray()); 174 174 Image partikkeli = LoadImage("partikkeli"); 175 Image taideVeri = LoadImage("taideveri"); 175 176 #endregion 176 177 … … 701 702 for (int i = 0; i < 6; i++) 702 703 { 703 GameObject p = new GameObject(25, 25); 704 p.Color = Color.Red; 704 GameObject p = new GameObject(8, 8); 705 //p.Color = Color.Red; 706 p.Image = taideVeri; 705 707 p.Position = alkupaikka + RandomGen.NextVector(0.0, RUUDUN_KOKO * 0.4); 706 708 Add(p, 3); -
2015/24/ohjaajat/Dungeon/Dungeon/Dungeon/Dungeon.csproj.Debug.cachefile
r6035 r6038 24 24 Content\piikit0006.xnb 25 25 Content\piikit0007.xnb 26 Content\taideveri.xnb -
2015/24/ohjaajat/Dungeon/Dungeon/DungeonContent/DungeonContent.contentproj
r6035 r6038 186 186 </Compile> 187 187 </ItemGroup> 188 <ItemGroup> 189 <Compile Include="taideveri.png"> 190 <Name>taideveri</Name> 191 <Importer>TextureImporter</Importer> 192 <Processor>TextureProcessor</Processor> 193 </Compile> 194 </ItemGroup> 188 195 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 189 196 <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset
for help on using the changeset viewer.