Changeset 6003
- Timestamp:
- 2015-06-10 13:55:40 (8 years ago)
- Location:
- 2015/24/UunoT
- Files:
-
- 11 added
- 8 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/24/UunoT/Tasohyppelypeli2/Tasohyppelypeli2/Tasohyppelypeli2/Tasohyppelypeli2.cs
r5986 r6003 13 13 const double kiipeaNopeus = 250; 14 14 const int RUUDUN_KOKO = 40; 15 15 int kenttaNro = 1; 16 16 17 PlatformCharacter pelaaja1; 17 18 Image pelaajanKuva = LoadImage(" norsu");18 Image RuneStone = LoadImage("Runestone"); 19 Image pelaajanKuva = LoadImage("Main"); 19 20 Image tahtiKuva = LoadImage("tahti"); 20 21 Image naamakuva = LoadImage ("Untitled"); 21 22 Image brick = LoadImage("Castlebirck"); 22 23 Image Blast = LoadImage("RuneBbbblast"); 24 Image ruoho = LoadImage("Crasstiel"); 23 25 SoundEffect maaliAani = LoadSoundEffect("maali"); 24 26 27 25 28 public override void Begin() 26 29 { 30 SeuraavaKentta(); 31 32 } 33 void SeuraavaKentta() 34 { 35 ClearAll(); 27 36 Gravity = new Vector(0, -1000); 28 37 29 LuoKentta(); 38 if (kenttaNro == 1) LuoKentta("kentta1"); 39 else if (kenttaNro == 2) LuoKentta("kentta2"); 40 //else if (kenttaNro == 3) LuoKentta("kentta3"); 41 else if (kenttaNro > 2) Exit(); 30 42 LisaaNappaimet(); 31 32 43 44 33 45 34 46 Camera.Follow(pelaaja1); … … 38 50 39 51 40 void LuoKentta() 41 { 42 TileMap kentta = TileMap.FromLevelAsset("kentta1"); 52 void LuoKentta(string kenttaTiedostonNimi) 53 { 54 TileMap kentta = TileMap.FromLevelAsset(kenttaTiedostonNimi); 55 43 56 kentta.SetTileMethod('#', LisaaTaso); 44 57 //kentta.SetTileMethod('*', LisaaTahti); 45 58 kentta.SetTileMethod('N', LisaaPelaaja); 59 kentta.SetTileMethod('R', maata); 60 kentta.SetTileMethod('K', LuoKrystalli); 61 kentta.SetTileMethod('B', Luoprotaali); 46 62 //kentta.SetTileMethod('T', LisaaTikkaat); 47 63 //kentta.SetTileMethod('p', spawneri); … … 57 73 taso.Image = brick; 58 74 taso.Position = paikka; 59 taso.Color = Color.Green; 75 taso.Tag = "seina"; 76 60 77 Add(taso); 61 78 } … … 86 103 pelaaja1.Mass = 4.0; 87 104 pelaaja1.Image = pelaajanKuva; 88 AddCollisionHandler(pelaaja1, "tahti", TormaaTahteen);105 //AddCollisionHandler(pelaaja1, "tahti", TormaaTahteen); 89 106 //AddCollisionHandler(pelaaja1, "tikkaat", Kiipea); 107 AddCollisionHandler(pelaaja1, "portaali", Karttavaihto); 90 108 Add(pelaaja1); 91 109 } 92 void Guy (Vector paikka, double leveys, double korkeus) 93 { 94 PhysicsObject guy = PhysicsObject.CreateStaticObject(leveys, korkeus); 110 void maata (Vector paikka, double leveys, double korkeus) 111 { 112 PhysicsObject mMata = PhysicsObject.CreateStaticObject(leveys, korkeus); 113 mMata.Image = ruoho; 114 mMata.Position = paikka; 115 mMata.Tag = "seina"; 116 Add(mMata); 117 118 95 119 96 97 98 Add(guy); 120 } 121 void Luoprotaali(Vector paikka, double leveys, double korkeus) 122 { 123 PhysicsObject protaali = new PhysicsObject(leveys,korkeus); 124 protaali.Tag = "portaali"; 125 protaali.Position = paikka; 126 Add (protaali); 127 } 128 void Karttavaihto(PhysicsObject pelaaja1, PhysicsObject protaali) 129 { 130 kenttaNro += 1; 131 SeuraavaKentta(); 99 132 } 100 133 void LisaaNappaimet() … … 148 181 //} 149 182 //} 150 void LuoNaama(Vector paikka) 151 { 152 PhysicsObject naama = new PhysicsObject (50, 50); 153 naama.Position = new Vector(); 154 naama.Shape = Shape.Circle; 155 naama.Image =naamakuva; 156 naama.Brain = new FollowerBrain(pelaaja1); 157 paikka = new Vector(0, 0); 158 Add (naama); 159 } 160 183 void LuoKrystalli(Vector paikka, double x, double y) 184 { 185 PhysicsObject krystalli = new PhysicsObject(40, 100); 186 krystalli.Position = paikka; 187 krystalli.Shape = Shape.Ellipse; 188 krystalli.Image = RuneStone; 189 krystalli.Brain = new FollowerBrain(pelaaja1); 190 krystalli.CollisionIgnoreGroup = 3; 191 Add(krystalli); 192 193 194 Timer ajastin = new Timer(); 195 ajastin.Interval = 1; 196 ajastin.Timeout += delegate { RuneBlast(krystalli); }; 197 ajastin.Start(); 198 199 } 200 void RuneBlast(PhysicsObject krystalli) 201 { 202 PhysicsObject runeblast = new PhysicsObject(50, 15); 203 runeblast.Position = krystalli.Position; 204 Vector suunta = (pelaaja1.Position - krystalli.Position).Normalize(); 205 runeblast.CollisionIgnoreGroup = 3; 206 runeblast.Image = Blast; 207 runeblast.Angle = suunta.Angle; 208 runeblast.IgnoresGravity = true; 209 Add(runeblast); 210 runeblast.Hit(suunta * 750); 211 runeblast.Tag = "Prjectile"; 212 AddCollisionHandler = (runeblast, "seina", tromaaseina); 213 } 161 214 //void spawneri(Vector paikka, double leveys, double korkeus) 162 215 //{ … … 166 219 // kutsuja.Start(); 167 220 //} 221 void tromaaseina( 222 { 223 224 } 225 168 226 } -
2015/24/UunoT/Tasohyppelypeli2/Tasohyppelypeli2/Tasohyppelypeli2/lyö isoa pahaa outsta ja hypi.csproj.Debug.cachefile
r5986 r6003 2 2 Content\norsu.xnb 3 3 Content\tahti.xnb 4 Content\kentta1.xnb5 4 Content\Untitled.xnb 6 5 Content\Castlebirck.xnb 7 Content\Rune stone.xnb8 6 Content\Rune stone NoAct.xnb 9 7 Content\rune stoen loading.xnb 10 Content\Rune Blast.xnb11 8 Content\ruen soten comp load.xnb 12 9 Content\rock with a meaning.xnb … … 18 15 Content\mieka lyo.xnb 19 16 Content\main walk.xnb 20 Content\Main stand.xnb21 Content\Crass tiel.xnb22 17 Content\Boss sword out cont.xnb 23 18 Content\Boss sword ice furm.xnb 19 Content\Crasstiel.xnb 20 Content\kentta2.xnb 21 Content\RuneStone.xnb 22 Content\Kentta1.xnb 23 Content\Main.xnb 24 Content\RuneBbbblast.xnb -
2015/24/UunoT/Tasohyppelypeli2/Tasohyppelypeli2/Tasohyppelypeli2/obj/x86/Debug/ContentPipeline-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}.xml
r5986 r6003 30 30 </Item> 31 31 <Item> 32 <Source>kentta1.txt</Source> 33 <Name>kentta1</Name> 32 <Source>Untitled.png</Source> 33 <Name>Untitled</Name> 34 <Importer>TextureImporter</Importer> 35 <Processor>TextureProcessor</Processor> 36 <Options>None</Options> 37 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Untitled.xnb</Output> 38 <Time>2015-06-09T11:04:14.3014411+03:00</Time> 39 </Item> 40 <Item> 41 <Source>Castlebirck.png</Source> 42 <Name>Castlebirck</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Castlebirck.xnb</Output> 47 <Time>2015-06-10T10:45:40.4674873+03:00</Time> 48 </Item> 49 <Item> 50 <Source>Rune stone NoAct.png</Source> 51 <Name>Rune stone NoAct</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Rune stone NoAct.xnb</Output> 56 <Time>2015-06-10T10:45:53.2448701+03:00</Time> 57 </Item> 58 <Item> 59 <Source>rune stoen loading.png</Source> 60 <Name>rune stoen loading</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\rune stoen loading.xnb</Output> 65 <Time>2015-06-10T10:45:54.8205913+03:00</Time> 66 </Item> 67 <Item> 68 <Source>ruen soten comp load.png</Source> 69 <Name>ruen soten comp load</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\ruen soten comp load.xnb</Output> 74 <Time>2015-06-10T10:45:58.5804805+03:00</Time> 75 </Item> 76 <Item> 77 <Source>rock with a meaning.png</Source> 78 <Name>rock with a meaning</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\rock with a meaning.xnb</Output> 83 <Time>2015-06-10T10:46:00.0469933+03:00</Time> 84 </Item> 85 <Item> 86 <Source>Quest marker.png</Source> 87 <Name>Quest marker</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Quest marker.xnb</Output> 92 <Time>2015-06-10T10:46:01.8879349+03:00</Time> 93 </Item> 94 <Item> 95 <Source>Quest marker (incomplete).png</Source> 96 <Name>Quest marker (incomplete)</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Quest marker (incomplete).xnb</Output> 101 <Time>2015-06-10T10:46:03.5104597+03:00</Time> 102 </Item> 103 <Item> 104 <Source>Mossy castle.png</Source> 105 <Name>Mossy castle</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Mossy castle.xnb</Output> 110 <Time>2015-06-10T10:46:06.1002589+03:00</Time> 111 </Item> 112 <Item> 113 <Source>mieka.png</Source> 114 <Name>mieka</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\mieka.xnb</Output> 119 <Time>2015-06-10T10:46:07.8007897+03:00</Time> 120 </Item> 121 <Item> 122 <Source>mieka procjectile.png</Source> 123 <Name>mieka procjectile</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\mieka procjectile.xnb</Output> 128 <Time>2015-06-10T10:46:09.6729337+03:00</Time> 129 </Item> 130 <Item> 131 <Source>mieka lyo.png</Source> 132 <Name>mieka lyo</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\mieka lyo.xnb</Output> 137 <Time>2015-06-10T10:46:11.1706489+03:00</Time> 138 </Item> 139 <Item> 140 <Source>main walk.png</Source> 141 <Name>main walk</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\main walk.xnb</Output> 146 <Time>2015-06-10T10:46:12.2939353+03:00</Time> 147 </Item> 148 <Item> 149 <Source>Boss sword out cont.png</Source> 150 <Name>Boss sword out cont</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Boss sword out cont.xnb</Output> 155 <Time>2015-06-10T10:46:19.5484933+03:00</Time> 156 </Item> 157 <Item> 158 <Source>Boss sword ice furm.png</Source> 159 <Name>Boss sword ice furm</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Boss sword ice furm.xnb</Output> 164 <Time>2015-06-10T10:46:20.9213989+03:00</Time> 165 </Item> 166 <Item> 167 <Source>Crasstiel.png</Source> 168 <Name>Crasstiel</Name> 169 <Importer>TextureImporter</Importer> 170 <Processor>TextureProcessor</Processor> 171 <Options>None</Options> 172 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Crasstiel.xnb</Output> 173 <Time>2015-06-10T10:46:15.6637945+03:00</Time> 174 </Item> 175 <Item> 176 <Source>kentta2.txt</Source> 177 <Name>kentta2</Name> 34 178 <Importer>TextFileImporter</Importer> 35 179 <Processor>TextFileContentProcessor</Processor> 36 180 <Options>None</Options> 37 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\kentta1.xnb</Output> 38 <Time>2015-06-09T13:31:17.8446411+03:00</Time> 39 </Item> 40 <Item> 41 <Source>Untitled.png</Source> 42 <Name>Untitled</Name> 43 <Importer>TextureImporter</Importer> 44 <Processor>TextureProcessor</Processor> 45 <Options>None</Options> 46 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Untitled.xnb</Output> 47 <Time>2015-06-09T11:04:14.3014411+03:00</Time> 48 </Item> 49 <Item> 50 <Source>Castlebirck.png</Source> 51 <Name>Castlebirck</Name> 52 <Importer>TextureImporter</Importer> 53 <Processor>TextureProcessor</Processor> 54 <Options>None</Options> 55 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Castlebirck.xnb</Output> 56 <Time>2015-06-10T10:45:40.4674873+03:00</Time> 57 </Item> 58 <Item> 59 <Source>Rune stone.png</Source> 60 <Name>Rune stone</Name> 61 <Importer>TextureImporter</Importer> 62 <Processor>TextureProcessor</Processor> 63 <Options>None</Options> 64 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Rune stone.xnb</Output> 181 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\kentta2.xnb</Output> 182 <Time>2015-06-10T13:41:04.0244017+03:00</Time> 183 </Item> 184 <Item> 185 <Source>RuneStone.png</Source> 186 <Name>RuneStone</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\RuneStone.xnb</Output> 65 191 <Time>2015-06-10T10:45:45.5066749+03:00</Time> 66 192 </Item> 67 193 <Item> 68 <Source>Rune stone NoAct.png</Source> 69 <Name>Rune stone NoAct</Name> 70 <Importer>TextureImporter</Importer> 71 <Processor>TextureProcessor</Processor> 72 <Options>None</Options> 73 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Rune stone NoAct.xnb</Output> 74 <Time>2015-06-10T10:45:53.2448701+03:00</Time> 75 </Item> 76 <Item> 77 <Source>rune stoen loading.png</Source> 78 <Name>rune stoen loading</Name> 79 <Importer>TextureImporter</Importer> 80 <Processor>TextureProcessor</Processor> 81 <Options>None</Options> 82 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\rune stoen loading.xnb</Output> 83 <Time>2015-06-10T10:45:54.8205913+03:00</Time> 84 </Item> 85 <Item> 86 <Source>Rune Blast.png</Source> 87 <Name>Rune Blast</Name> 88 <Importer>TextureImporter</Importer> 89 <Processor>TextureProcessor</Processor> 90 <Options>None</Options> 91 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Rune Blast.xnb</Output> 92 <Time>2015-06-10T10:45:56.7863425+03:00</Time> 93 </Item> 94 <Item> 95 <Source>ruen soten comp load.png</Source> 96 <Name>ruen soten comp load</Name> 97 <Importer>TextureImporter</Importer> 98 <Processor>TextureProcessor</Processor> 99 <Options>None</Options> 100 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\ruen soten comp load.xnb</Output> 101 <Time>2015-06-10T10:45:58.5804805+03:00</Time> 102 </Item> 103 <Item> 104 <Source>rock with a meaning.png</Source> 105 <Name>rock with a meaning</Name> 106 <Importer>TextureImporter</Importer> 107 <Processor>TextureProcessor</Processor> 108 <Options>None</Options> 109 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\rock with a meaning.xnb</Output> 110 <Time>2015-06-10T10:46:00.0469933+03:00</Time> 111 </Item> 112 <Item> 113 <Source>Quest marker.png</Source> 114 <Name>Quest marker</Name> 115 <Importer>TextureImporter</Importer> 116 <Processor>TextureProcessor</Processor> 117 <Options>None</Options> 118 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Quest marker.xnb</Output> 119 <Time>2015-06-10T10:46:01.8879349+03:00</Time> 120 </Item> 121 <Item> 122 <Source>Quest marker (incomplete).png</Source> 123 <Name>Quest marker (incomplete)</Name> 124 <Importer>TextureImporter</Importer> 125 <Processor>TextureProcessor</Processor> 126 <Options>None</Options> 127 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Quest marker (incomplete).xnb</Output> 128 <Time>2015-06-10T10:46:03.5104597+03:00</Time> 129 </Item> 130 <Item> 131 <Source>Mossy castle.png</Source> 132 <Name>Mossy castle</Name> 133 <Importer>TextureImporter</Importer> 134 <Processor>TextureProcessor</Processor> 135 <Options>None</Options> 136 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Mossy castle.xnb</Output> 137 <Time>2015-06-10T10:46:06.1002589+03:00</Time> 138 </Item> 139 <Item> 140 <Source>mieka.png</Source> 141 <Name>mieka</Name> 142 <Importer>TextureImporter</Importer> 143 <Processor>TextureProcessor</Processor> 144 <Options>None</Options> 145 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\mieka.xnb</Output> 146 <Time>2015-06-10T10:46:07.8007897+03:00</Time> 147 </Item> 148 <Item> 149 <Source>mieka procjectile.png</Source> 150 <Name>mieka procjectile</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\mieka procjectile.xnb</Output> 155 <Time>2015-06-10T10:46:09.6729337+03:00</Time> 156 </Item> 157 <Item> 158 <Source>mieka lyo.png</Source> 159 <Name>mieka lyo</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\mieka lyo.xnb</Output> 164 <Time>2015-06-10T10:46:11.1706489+03:00</Time> 165 </Item> 166 <Item> 167 <Source>main walk.png</Source> 168 <Name>main walk</Name> 169 <Importer>TextureImporter</Importer> 170 <Processor>TextureProcessor</Processor> 171 <Options>None</Options> 172 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\main walk.xnb</Output> 173 <Time>2015-06-10T10:46:12.2939353+03:00</Time> 174 </Item> 175 <Item> 176 <Source>Main stand.png</Source> 177 <Name>Main stand</Name> 178 <Importer>TextureImporter</Importer> 179 <Processor>TextureProcessor</Processor> 180 <Options>None</Options> 181 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Main stand.xnb</Output> 194 <Source>Kentta1.txt</Source> 195 <Name>Kentta1</Name> 196 <Importer>TextFileImporter</Importer> 197 <Processor>TextFileContentProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Kentta1.xnb</Output> 200 <Time>2015-06-10T13:36:01.2712017+03:00</Time> 201 </Item> 202 <Item> 203 <Source>Main.png</Source> 204 <Name>Main</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Main.xnb</Output> 182 209 <Time>2015-06-10T10:46:13.9788649+03:00</Time> 183 210 </Item> 184 211 <Item> 185 <Source>Crass tiel.png</Source> 186 <Name>Crass tiel</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Crass tiel.xnb</Output> 191 <Time>2015-06-10T10:46:15.6637945+03:00</Time> 192 </Item> 193 <Item> 194 <Source>Boss sword out cont.png</Source> 195 <Name>Boss sword out cont</Name> 196 <Importer>TextureImporter</Importer> 197 <Processor>TextureProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Boss sword out cont.xnb</Output> 200 <Time>2015-06-10T10:46:19.5484933+03:00</Time> 201 </Item> 202 <Item> 203 <Source>Boss sword ice furm.png</Source> 204 <Name>Boss sword ice furm</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Boss sword ice furm.xnb</Output> 209 <Time>2015-06-10T10:46:20.9213989+03:00</Time> 212 <Source>RuneBbbblast.png</Source> 213 <Name>RuneBbbblast</Name> 214 <Importer>TextureImporter</Importer> 215 <Processor>TextureProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\RuneBbbblast.xnb</Output> 218 <Time>2015-06-10T13:17:07.0203033+03:00</Time> 210 219 </Item> 211 220 <BuildSuccessful>true</BuildSuccessful> -
2015/24/UunoT/Tasohyppelypeli2/Tasohyppelypeli2/Tasohyppelypeli2/obj/x86/Debug/cachefile-{FB1067CC-FEED-45F1-8CB8-8F3DD59AB260}-targetpath.txt
r5986 r6003 2 2 Content\norsu.xnb 3 3 Content\tahti.xnb 4 Content\kentta1.xnb5 4 Content\Untitled.xnb 6 5 Content\Castlebirck.xnb 7 Content\Rune stone.xnb8 6 Content\Rune stone NoAct.xnb 9 7 Content\rune stoen loading.xnb 10 Content\Rune Blast.xnb11 8 Content\ruen soten comp load.xnb 12 9 Content\rock with a meaning.xnb … … 18 15 Content\mieka lyo.xnb 19 16 Content\main walk.xnb 20 Content\Main stand.xnb21 Content\Crass tiel.xnb22 17 Content\Boss sword out cont.xnb 23 18 Content\Boss sword ice furm.xnb 19 Content\Crasstiel.xnb 20 Content\kentta2.xnb 21 Content\RuneStone.xnb 22 Content\Kentta1.xnb 23 Content\Main.xnb 24 Content\RuneBbbblast.xnb -
2015/24/UunoT/Tasohyppelypeli2/Tasohyppelypeli2/Tasohyppelypeli2/obj/x86/Debug/lyö isoa pahaa outsta ja hypi.csproj.FileListAbsolute.txt
r5986 r6003 2 2 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\norsu.xnb 3 3 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\tahti.xnb 4 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\kentta1.xnb5 4 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Untitled.xnb 6 5 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Tasohyppelypeli2.exe … … 13 12 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\obj\x86\Debug\lyö isoa pahaa outsta ja hypi.csprojResolveAssemblyReference.cache 14 13 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Castlebirck.xnb 15 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Rune stone.xnb16 14 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Rune stone NoAct.xnb 17 15 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\rune stoen loading.xnb 18 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Rune Blast.xnb19 16 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\ruen soten comp load.xnb 20 17 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\rock with a meaning.xnb … … 26 23 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\mieka lyo.xnb 27 24 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\main walk.xnb 28 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Main stand.xnb29 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Crass tiel.xnb30 25 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Boss sword out cont.xnb 31 26 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Boss sword ice furm.xnb 27 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Crasstiel.xnb 28 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\kentta2.xnb 29 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\RuneStone.xnb 30 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Kentta1.xnb 31 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\Main.xnb 32 C:\MyTemp\UunoT\Tasohyppelypeli2\Tasohyppelypeli2\Tasohyppelypeli2\bin\x86\Debug\Content\RuneBbbblast.xnb -
2015/24/UunoT/Tasohyppelypeli2/Tasohyppelypeli2/Tasohyppelypeli2Content/Hypi ja lyö isoa pahaa otusta ja hypi.contentproj
r5986 r6003 61 61 <Processor>TextureProcessor</Processor> 62 62 </Compile> 63 <Compile Include="kentta 1.txt">64 <Name>kentta 1</Name>63 <Compile Include="kentta2.txt"> 64 <Name>kentta2</Name> 65 65 <Importer>TextFileImporter</Importer> 66 66 <Processor>TextFileContentProcessor</Processor> … … 82 82 </ItemGroup> 83 83 <ItemGroup> 84 <Compile Include="Rune stone.png">85 <Name>Rune stone</Name>84 <Compile Include="RuneStone.png"> 85 <Name>RuneStone</Name> 86 86 <Importer>TextureImporter</Importer> 87 87 <Processor>TextureProcessor</Processor> … … 103 103 </ItemGroup> 104 104 <ItemGroup> 105 <Compile Include="Rune Blast.png">106 <Name>Rune Blast</Name>105 <Compile Include="RuneBbbblast.png"> 106 <Name>RuneBbbblast</Name> 107 107 <Importer>TextureImporter</Importer> 108 108 <Processor>TextureProcessor</Processor> … … 173 173 </ItemGroup> 174 174 <ItemGroup> 175 <Compile Include="Main stand.png">176 <Name>Main stand</Name>177 <Importer>TextureImporter</Importer> 178 <Processor>TextureProcessor</Processor> 179 </Compile> 180 </ItemGroup> 181 <ItemGroup> 182 <Compile Include="Crass 183 <Name>Crass 175 <Compile Include="Main.png"> 176 <Name>Main</Name> 177 <Importer>TextureImporter</Importer> 178 <Processor>TextureProcessor</Processor> 179 </Compile> 180 </ItemGroup> 181 <ItemGroup> 182 <Compile Include="Crasstiel.png"> 183 <Name>Crasstiel</Name> 184 184 <Importer>TextureImporter</Importer> 185 185 <Processor>TextureProcessor</Processor> … … 198 198 <Importer>TextureImporter</Importer> 199 199 <Processor>TextureProcessor</Processor> 200 </Compile> 201 </ItemGroup> 202 <ItemGroup> 203 <Compile Include="Kentta1.txt"> 204 <Name>Kentta1</Name> 205 <Importer>TextFileImporter</Importer> 206 <Processor>TextFileContentProcessor</Processor> 200 207 </Compile> 201 208 </ItemGroup> -
2015/24/UunoT/Tasohyppelypeli2/Tasohyppelypeli2/Tasohyppelypeli2Content/kentta1.txt
r5946 r6003 1 ################################################################ 2 # # 3 # # 4 # # 5 # # 6 # # 7 # # 8 # # 9 # # 10 # # 11 # # 12 # # 13 # # 14 # # 15 # # 16 # # 17 # # 18 # N # 19 ################################################################ 1 2 3 4 5 6 7 8 9 10 11 12 N K B 13 RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR
Note: See TracChangeset
for help on using the changeset viewer.