Changeset 6038 for 2015


Ignore:
Timestamp:
2015-06-11 19:07:20 (8 years ago)
Author:
empaheik
Message:

Pienempää verta.

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  
    173173    Image[] vihuKuvat = LoadImages((from i in Enumerable.Range(1, 10) select String.Format("v{0:0000}", i)).ToArray()); 
    174174    Image partikkeli = LoadImage("partikkeli"); 
     175    Image taideVeri = LoadImage("taideveri"); 
    175176    #endregion 
    176177 
     
    701702        for (int i = 0; i < 6; i++) 
    702703        { 
    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; 
    705707            p.Position = alkupaikka + RandomGen.NextVector(0.0, RUUDUN_KOKO * 0.4); 
    706708            Add(p, 3); 
  • 2015/24/ohjaajat/Dungeon/Dungeon/Dungeon/Dungeon.csproj.Debug.cachefile

    r6035 r6038  
    2424Content\piikit0006.xnb 
    2525Content\piikit0007.xnb 
     26Content\taideveri.xnb 
  • 2015/24/ohjaajat/Dungeon/Dungeon/DungeonContent/DungeonContent.contentproj

    r6035 r6038  
    186186    </Compile> 
    187187  </ItemGroup> 
     188  <ItemGroup> 
     189    <Compile Include="taideveri.png"> 
     190      <Name>taideveri</Name> 
     191      <Importer>TextureImporter</Importer> 
     192      <Processor>TextureProcessor</Processor> 
     193    </Compile> 
     194  </ItemGroup> 
    188195  <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 
    189196  <!--  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.