Changeset 6972
- Timestamp:
- 2015-07-23 11:49:46 (8 years ago)
- Location:
- 2015/30/NoelV/peli0.0.0.3/turhakepeli
- Files:
-
- 3 added
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/30/NoelV/peli0.0.0.3/turhakepeli/turhakepeli/turhakepeli/obj/x86/Debug/cachefile-{8C608BBB-CC9B-467B-9EA1-3FA736E42C66}-targetpath.txt
r6931 r6972 46 46 Content\PatsasAla.xnb 47 47 Content\PatsasYla.xnb 48 Content\hahmo.anim.xnb49 48 Content\laatikkoAla.xnb 50 49 Content\laatikkoYla.xnb … … 56 55 Content\ammus.xnb 57 56 Content\banana.xnb 57 Content\hahmo.anim.xnb 58 Content\pimeys.xnb 58 59 Content\pelaaja.png 59 60 Content\valikko.png -
2015/30/NoelV/peli0.0.0.3/turhakepeli/turhakepeli/turhakepeli/obj/x86/Debug/turhakepeli.csproj.FileListAbsolute.txt
r6931 r6972 329 329 C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\ammus.xnb 330 330 C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\banana.xnb 331 C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pimeys.xnb -
2015/30/NoelV/peli0.0.0.3/turhakepeli/turhakepeli/turhakepeli/turhakepeli.cs
r6931 r6972 53 53 Image LaatikkoYla3 = LoadImage("laatikkoYla3"); 54 54 Image ammuksenKuva = LoadImage("banana"); 55 Image pimeysKuva = LoadImage("pimeys"); 55 56 56 57 FollowerBrain seuraajanAivot; … … 173 174 saakoAmpua = false; 174 175 175 Timer.SingleShot(0. 8, delegate { saakoAmpua = true; });176 Timer.SingleShot(0.5, delegate { saakoAmpua = true; }); 176 177 177 178 } … … 343 344 344 345 345 346 346 //3. Execute luo kentän 347 347 // Parametreina leveys ja korkeus … … 355 355 //energianKasvattaja.Timeout += delegate { energiaLaskuri.Value += 10; if (energiaLaskuri.Value >= 1000) energianKasvattaja.Stop(); }; 356 356 357 LuoVihuNaytto();357 LuoVihuNaytto(); 358 358 359 359 //Timer vihunLuontiAjastin = new Timer(); … … 362 362 //vihunLuontiAjastin.Start(); 363 363 364 GameObject pimeys = new GameObject(Level.Width, Level.Height); 365 //pimeys.Color = Color.Black; 366 pimeys.Image = pimeysKuva; 367 Add(pimeys, 3); 368 369 364 370 } 365 371 void LuoKypara(Vector paikka, double leveys, double korkeus) … … 369 375 kypara.Position = paikka; 370 376 kypara.IgnoresCollisionResponse = true; 371 Add(kypara, 1);377 Add(kypara, -1); 372 378 } 373 379 void LuoPatsaanVartalo(Vector paikka, double leveys, double korkeus) … … 377 383 PatsaanVartalo.IgnoresCollisionResponse = true; 378 384 PatsaanVartalo.Image = PatsasYla; 379 Add(PatsaanVartalo, 3);385 Add(PatsaanVartalo, 2); 380 386 } 381 387 void LuoPatsaanJalat(Vector paikka, double leveys, double korkeus) … … 387 393 PatsaanJalat.Shape = Shape.Circle; 388 394 PatsaanJalat.Tag = "muuri"; 389 Add(PatsaanJalat, 1);395 Add(PatsaanJalat, -1); 390 396 } 391 397 … … 443 449 YlempiOikeaYla.Image = ylempiOikeaYla; 444 450 YlempiOikeaYla.IgnoresCollisionResponse = true; 445 YlempiOikeaYla.Tag = "muuri"; 446 Add(YlempiOikeaYla, 3); 451 Add(YlempiOikeaYla, 2); 447 452 448 453 … … 455 460 YlempiVasenYla.Image = ylempiVasenYla; 456 461 YlempiVasenYla.IgnoresCollisionResponse = true; 457 YlempiVasenYla.Tag = "muuri"; 458 Add(YlempiVasenYla, 3); 462 Add(YlempiVasenYla, 2); 459 463 460 464 … … 466 470 //YlempiOikeaAla.CollisionIgnoreGroup = 1; 467 471 YlempiOikeaAla.Image = ylempiOikeaAla; 468 YlempiOikeaAla.Tag = "muuri";469 472 YlempiOikeaAla.IgnoresCollisionResponse = true; 470 473 Add(YlempiOikeaAla, 3); … … 478 481 //YlempiVasenAla.CollisionIgnoreGroup = 1; 479 482 YlempiVasenAla.Image = ylempiVasenYla; 480 YlempiVasenAla.Tag = "muuri";481 483 //YlempiVasenAla.IgnoresCollisionResponse = false; 482 Add(YlempiVasenAla, 1);484 Add(YlempiVasenAla, -1); 483 485 484 486 … … 491 493 YlempiKeski.Image = ylempiKeski; 492 494 YlempiKeski.IgnoresCollisionResponse = true; 493 YlempiKeski.Tag = "muuri"; 494 Add(YlempiKeski, 3); 495 Add(YlempiKeski, 2); 495 496 496 497 … … 537 538 pelaaja.CollisionIgnoreGroup = 5; 538 539 pelaaja.IgnoresCollisionResponse = true; 539 Add(pelaaja, 2);540 Add(pelaaja, 1); 540 541 AddCollisionHandler(pelaaja, "vihu", OsuuViholliseen); 541 542 AddCollisionHandler(pelaaja, "enkka", OsuuEnkkaan); … … 633 634 seuraajanAivot = new FollowerBrain(pelaaja); 634 635 seuraajanAivot.Speed = 70.0; 635 seuraajanAivot.DistanceFar = 300;636 seuraajanAivot.DistanceFar = 500; 636 637 seuraajanAivot.DistanceClose = 60; 637 638 seuraajanAivot.TurnWhileMoving = false; … … 712 713 else if (suunta == 0) 713 714 { 714 vihollinen.Animation.Stop(); 715 if (vihollinen.Animation != null) 716 { 717 vihollinen.Animation.Stop(); 718 } 715 719 } 716 720 }; … … 959 963 void LuoEnkkaLaskuri() 960 964 { 961 enkkaLaskuri = new DoubleMeter(10); 962 enkkaLaskuri.MaxValue = 10; 963 enkkaLaskuri.LowerLimit += ElamaLoppui; 964 965 if (kenttaNro == 1) 966 { 967 enkkaLaskuri = new DoubleMeter(10); 968 enkkaLaskuri.MaxValue = 10; 969 enkkaLaskuri.LowerLimit += ElamaLoppui; 970 } 965 971 ProgressBar elamaPalkki = new ProgressBar(250, 30); 966 972 elamaPalkki.X = Screen.Left + 150; … … 1001 1007 { 1002 1008 ClearAll(); 1009 Keyboard.Clear(); 1003 1010 IsPaused = false; 1004 1011 Mouse.IsCursorVisible = false; 1005 1012 1006 if (kenttaNro == 1) LuoKentta("kentta ");1013 if (kenttaNro == 1) LuoKentta("kentta02"); 1007 1014 else if (kenttaNro == 2) LuoKentta("kentta02"); 1008 1015 else if (kenttaNro == 3) LuoKentta("kentta03"); … … 1047 1054 //Add(turhake); 1048 1055 Camera.FollowedObject = pelaaja; 1056 1057 saakoAmpua = true; 1049 1058 } 1050 1059 … … 1074 1083 void LuoEnergiaLaskuri() 1075 1084 { 1076 energiaLaskuri = new DoubleMeter(10); 1077 energiaLaskuri.MaxValue = 10; 1078 //energiaLaskuri.LowerLimit += ElamaLoppui; 1079 1085 if (kenttaNro == 1) 1086 { 1087 energiaLaskuri = new DoubleMeter(10); 1088 energiaLaskuri.MaxValue = 10; 1089 //energiaLaskuri.LowerLimit += ElamaLoppui; 1090 } 1080 1091 ProgressBar energiaPalkki = new ProgressBar(250, 30); 1081 1092 energiaPalkki.X = Screen.Left + 150; … … 1104 1115 void OsuuEnkkaan(PhysicsObject hitbox, PhysicsObject enkka) 1105 1116 { 1106 enkkaLaskuri.Value += 4;1117 enkkaLaskuri.Value += 1; 1107 1118 enkka.Destroy(); 1108 1119 Label kerausteksti = new Label("HEALTH UP"); … … 1180 1191 { 1181 1192 enkkaLaskuri.MaxValue += 5; 1182 enkkaLaskuri.Value -= 1;1193 enkkaLaskuri.Value += 5; 1183 1194 energiaLaskuri.Value += 10; 1184 1195 kalja.Destroy(); … … 1269 1280 this.ylaOsa = new GameObject(ylaOsanKuva); 1270 1281 this.ylaOsa.Position = this.Position + new Vector(0, this.Size.Y / 2 + ylaOsa.Size.Y / 2); 1271 ((turhakepeli)Game.Instance).Add(ylaOsa, 3);1282 ((turhakepeli)Game.Instance).Add(ylaOsa, 2); 1272 1283 1273 1284 Timer kerroksenVaihtaja = new Timer(); … … 1281 1292 { 1282 1293 this.TuhoaLaatikko(); 1283 ((turhakepeli)Game.Instance).Add(this, 3);1284 ((turhakepeli)Game.Instance).Add(this.ylaOsa, 3);1294 ((turhakepeli)Game.Instance).Add(this, 2); 1295 ((turhakepeli)Game.Instance).Add(this.ylaOsa, 2); 1285 1296 } 1286 1297 else 1287 1298 { 1288 1299 this.TuhoaLaatikko(); 1289 ((turhakepeli)Game.Instance).Add(this, 3);1290 ((turhakepeli)Game.Instance).Add(this.ylaOsa, 3);1300 ((turhakepeli)Game.Instance).Add(this, 2); 1301 ((turhakepeli)Game.Instance).Add(this.ylaOsa, 2); 1291 1302 } 1292 1303 } -
2015/30/NoelV/peli0.0.0.3/turhakepeli/turhakepeli/turhakepeli/turhakepeli.csproj.Debug.cachefile
r6931 r6972 46 46 Content\PatsasAla.xnb 47 47 Content\PatsasYla.xnb 48 Content\hahmo.anim.xnb49 48 Content\laatikkoAla.xnb 50 49 Content\laatikkoYla.xnb … … 56 55 Content\ammus.xnb 57 56 Content\banana.xnb 57 Content\hahmo.anim.xnb 58 Content\pimeys.xnb 58 59 Content\pelaaja.png 59 60 Content\valikko.png -
2015/30/NoelV/peli0.0.0.3/turhakepeli/turhakepeli/turhakepeliContent/obj/x86/Debug/ContentPipeline.xml
r6931 r6972 9 9 <Options>None</Options> 10 10 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kentta.xnb</Output> 11 <Time>2015-07-2 2T14:49:25.9519703+03:00</Time>11 <Time>2015-07-23T11:12:41.8391906+03:00</Time> 12 12 </Item> 13 13 <Item> … … 18 18 <Options>None</Options> 19 19 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaaja.xnb</Output> 20 <Time>2015-0 3-26T18:54:56+02:00</Time>20 <Time>2015-07-23T09:48:10.1590006+03:00</Time> 21 21 </Item> 22 22 <Item> … … 27 27 <Options>None</Options> 28 28 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\valikko.xnb</Output> 29 <Time>2015-0 4-05T16:30:26+03:00</Time>29 <Time>2015-07-23T09:48:09.441396+03:00</Time> 30 30 </Item> 31 31 <Item> … … 36 36 <Options>None</Options> 37 37 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\hyokkaus.xnb</Output> 38 <Time>2015-0 3-23T18:00:48+02:00</Time>38 <Time>2015-07-23T09:48:09.4257959+03:00</Time> 39 39 </Item> 40 40 <Item> … … 45 45 <Options>None</Options> 46 46 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\hahmo01.xnb</Output> 47 <Time>2015-0 3-26T18:54:56+02:00</Time>47 <Time>2015-07-23T09:48:09.8157984+03:00</Time> 48 48 </Item> 49 49 <Item> … … 54 54 <Options>None</Options> 55 55 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\hahmo02.xnb</Output> 56 <Time>2015-0 3-26T18:54:56+02:00</Time>56 <Time>2015-07-23T09:48:09.8157984+03:00</Time> 57 57 </Item> 58 58 <Item> … … 63 63 <Options>None</Options> 64 64 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\maa.xnb</Output> 65 <Time>2015-07-2 1T19:12:38+03:00</Time>65 <Time>2015-07-23T09:48:09.441396+03:00</Time> 66 66 </Item> 67 67 <Item> … … 72 72 <Options>None</Options> 73 73 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\ala.xnb</Output> 74 <Time>2015-07-2 1T16:49:44+03:00</Time>74 <Time>2015-07-23T09:48:10.533403+03:00</Time> 75 75 </Item> 76 76 <Item> … … 81 81 <Options>None</Options> 82 82 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\Sivu.xnb</Output> 83 <Time>2015-07-2 1T17:18:28+03:00</Time>83 <Time>2015-07-23T09:48:09.8625987+03:00</Time> 84 84 </Item> 85 85 <Item> … … 90 90 <Options>None</Options> 91 91 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\oikeaYla.xnb</Output> 92 <Time>2015-07-2 1T17:18:36+03:00</Time>92 <Time>2015-07-23T09:48:09.4257959+03:00</Time> 93 93 </Item> 94 94 <Item> … … 99 99 <Options>None</Options> 100 100 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\SivuOikea.xnb</Output> 101 <Time>2015-0 3-07T18:20:28+02:00</Time>101 <Time>2015-07-23T09:48:10.1746007+03:00</Time> 102 102 </Item> 103 103 <Item> … … 108 108 <Options>None</Options> 109 109 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\oikeaAla.xnb</Output> 110 <Time>2015-07-2 1T18:05:38+03:00</Time>110 <Time>2015-07-23T09:48:10.5646032+03:00</Time> 111 111 </Item> 112 112 <Item> … … 117 117 <Options>None</Options> 118 118 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\vasenAla.xnb</Output> 119 <Time>2015-07-2 1T18:05:38+03:00</Time>119 <Time>2015-07-23T09:48:10.8142048+03:00</Time> 120 120 </Item> 121 121 <Item> … … 126 126 <Options>None</Options> 127 127 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\vasenYla.xnb</Output> 128 <Time>2015-07-2 1T17:18:36+03:00</Time>128 <Time>2015-07-23T09:48:09.8001983+03:00</Time> 129 129 </Item> 130 130 <Item> … … 135 135 <Options>None</Options> 136 136 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaHyokkaa.xnb</Output> 137 <Time>201 4-07-03T17:17:46+03:00</Time>137 <Time>2015-07-23T09:48:10.5646032+03:00</Time> 138 138 </Item> 139 139 <Item> … … 144 144 <Options>None</Options> 145 145 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kuollut.xnb</Output> 146 <Time>201 4-07-03T17:17:46+03:00</Time>146 <Time>2015-07-23T09:48:09.441396+03:00</Time> 147 147 </Item> 148 148 <Item> … … 153 153 <Options>None</Options> 154 154 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kentta02.xnb</Output> 155 <Time>2015-0 3-20T22:04:06+02:00</Time>155 <Time>2015-07-23T11:23:17.8690218+03:00</Time> 156 156 </Item> 157 157 <Item> … … 162 162 <Options>None</Options> 163 163 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kentta03.xnb</Output> 164 <Time>2015-0 3-20T22:01:22+02:00</Time>164 <Time>2015-07-23T09:48:10.1278004+03:00</Time> 165 165 </Item> 166 166 <Item> … … 171 171 <Options>None</Options> 172 172 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\enkka.xnb</Output> 173 <Time>2015-07-2 1T18:18:58+03:00</Time>173 <Time>2015-07-23T09:48:10.5022028+03:00</Time> 174 174 </Item> 175 175 <Item> … … 180 180 <Options>None</Options> 181 181 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\hahmo01..xnb</Output> 182 <Time>201 4-07-01T17:41:18+03:00</Time>182 <Time>2015-07-23T09:48:09.7689981+03:00</Time> 183 183 </Item> 184 184 <Item> … … 189 189 <Options>None</Options> 190 190 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pullo.xnb</Output> 191 <Time>2015-0 4-01T14:32:58+03:00</Time>191 <Time>2015-07-23T09:48:10.8142048+03:00</Time> 192 192 </Item> 193 193 <Item> … … 198 198 <Options>None</Options> 199 199 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kentta04.xnb</Output> 200 <Time>201 4-07-22T19:31:22+03:00</Time>200 <Time>2015-07-23T09:48:10.1434005+03:00</Time> 201 201 </Item> 202 202 <Item> … … 207 207 <Options>None</Options> 208 208 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kentta05.xnb</Output> 209 <Time>201 4-07-22T20:30:16+03:00</Time>209 <Time>2015-07-23T09:48:10.1590006+03:00</Time> 210 210 </Item> 211 211 <Item> … … 216 216 <Options>None</Options> 217 217 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaOikea01.xnb</Output> 218 <Time>2015-0 4-05T16:07:10+03:00</Time>218 <Time>2015-07-23T09:48:10.1746007+03:00</Time> 219 219 </Item> 220 220 <Item> … … 225 225 <Options>None</Options> 226 226 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaOikea02.xnb</Output> 227 <Time>2015-0 4-05T16:07:10+03:00</Time>227 <Time>2015-07-23T09:48:10.1746007+03:00</Time> 228 228 </Item> 229 229 <Item> … … 234 234 <Options>None</Options> 235 235 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaOikea.xnb</Output> 236 <Time>2015-0 4-05T16:07:10+03:00</Time>236 <Time>2015-07-23T09:48:09.8469986+03:00</Time> 237 237 </Item> 238 238 <Item> … … 243 243 <Options>None</Options> 244 244 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaVasen.xnb</Output> 245 <Time>2015-0 4-05T16:06:48+03:00</Time>245 <Time>2015-07-23T09:48:10.1434005+03:00</Time> 246 246 </Item> 247 247 <Item> … … 252 252 <Options>None</Options> 253 253 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaVasen01.xnb</Output> 254 <Time>2015-0 4-05T16:06:48+03:00</Time>254 <Time>2015-07-23T09:48:10.5178029+03:00</Time> 255 255 </Item> 256 256 <Item> … … 261 261 <Options>None</Options> 262 262 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaVasen02.xnb</Output> 263 <Time>2015-0 4-05T16:06:48+03:00</Time>263 <Time>2015-07-23T09:48:10.533403+03:00</Time> 264 264 </Item> 265 265 <Item> … … 270 270 <Options>None</Options> 271 271 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kentta06.xnb</Output> 272 <Time>201 4-10-27T18:56:54+02:00</Time>272 <Time>2015-07-23T09:48:10.1590006+03:00</Time> 273 273 </Item> 274 274 <Item> … … 279 279 <Options>None</Options> 280 280 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikko.xnb</Output> 281 <Time>2015-0 5-13T15:08:50+03:00</Time>281 <Time>2015-07-23T09:48:09.8157984+03:00</Time> 282 282 </Item> 283 283 <Item> … … 288 288 <Options>None</Options> 289 289 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pullo2.xnb</Output> 290 <Time>2015-0 4-01T15:53:26+03:00</Time>290 <Time>2015-07-23T09:48:09.8625987+03:00</Time> 291 291 </Item> 292 292 <Item> … … 297 297 <Options>None</Options> 298 298 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaTakaa01.xnb</Output> 299 <Time>2015-0 3-26T18:53:00+02:00</Time>299 <Time>2015-07-23T09:48:09.4569961+03:00</Time> 300 300 </Item> 301 301 <Item> … … 306 306 <Options>None</Options> 307 307 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pelaajaTakaa02.xnb</Output> 308 <Time>2015-0 3-26T18:53:00+02:00</Time>308 <Time>2015-07-23T09:48:09.4569961+03:00</Time> 309 309 </Item> 310 310 <Item> … … 315 315 <Options>None</Options> 316 316 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikko2.xnb</Output> 317 <Time>2015-0 4-19T19:15:20+03:00</Time>317 <Time>2015-07-23T09:48:10.1902008+03:00</Time> 318 318 </Item> 319 319 <Item> … … 324 324 <Options>None</Options> 325 325 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikko3.xnb</Output> 326 <Time>2015-0 5-15T21:37:16+03:00</Time>326 <Time>2015-07-23T09:48:10.2058009+03:00</Time> 327 327 </Item> 328 328 <Item> … … 333 333 <Options>None</Options> 334 334 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikko4.xnb</Output> 335 <Time>2015-0 4-19T19:23:58+03:00</Time>335 <Time>2015-07-23T09:48:10.2058009+03:00</Time> 336 336 </Item> 337 337 <Item> … … 342 342 <Options>None</Options> 343 343 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikko5.xnb</Output> 344 <Time>2015-0 5-15T21:47:44+03:00</Time>344 <Time>2015-07-23T09:48:10.2058009+03:00</Time> 345 345 </Item> 346 346 <Item> … … 351 351 <Options>None</Options> 352 352 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\miekka.xnb</Output> 353 <Time>2015-0 5-16T00:11:58+03:00</Time>353 <Time>2015-07-23T09:48:09.4569961+03:00</Time> 354 354 </Item> 355 355 <Item> … … 360 360 <Options>None</Options> 361 361 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\YlempiOikeaAla.xnb</Output> 362 <Time>2015-07-2 1T18:11:06+03:00</Time>362 <Time>2015-07-23T09:48:10.7830046+03:00</Time> 363 363 </Item> 364 364 <Item> … … 369 369 <Options>None</Options> 370 370 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\YlempiOikeaYla.xnb</Output> 371 <Time>2015-07-2 1T18:11:06+03:00</Time>371 <Time>2015-07-23T09:48:09.7845982+03:00</Time> 372 372 </Item> 373 373 <Item> … … 378 378 <Options>None</Options> 379 379 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\YlempiVasenAla.xnb</Output> 380 <Time>2015-07-2 1T18:11:06+03:00</Time>380 <Time>2015-07-23T09:48:09.7689981+03:00</Time> 381 381 </Item> 382 382 <Item> … … 387 387 <Options>None</Options> 388 388 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\YlempiVasenYla.xnb</Output> 389 <Time>2015-07-2 1T18:11:06+03:00</Time>389 <Time>2015-07-23T09:48:09.8313985+03:00</Time> 390 390 </Item> 391 391 <Item> … … 396 396 <Options>None</Options> 397 397 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\YlempiKeski.xnb</Output> 398 <Time>2015-07-2 1T18:11:28+03:00</Time>398 <Time>2015-07-23T09:48:09.8157984+03:00</Time> 399 399 </Item> 400 400 <Item> … … 405 405 <Options>None</Options> 406 406 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\sarvikypara.xnb</Output> 407 <Time>2015-0 5-16T00:08:48+03:00</Time>407 <Time>2015-07-23T09:48:10.533403+03:00</Time> 408 408 </Item> 409 409 <Item> … … 414 414 <Options>None</Options> 415 415 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\PatsasAla.xnb</Output> 416 <Time>2015-0 5-15T23:37:52+03:00</Time>416 <Time>2015-07-23T09:48:09.7689981+03:00</Time> 417 417 </Item> 418 418 <Item> … … 423 423 <Options>None</Options> 424 424 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\PatsasYla.xnb</Output> 425 <Time>2015-05-15T23:38:22+03:00</Time> 425 <Time>2015-07-23T09:48:09.8313985+03:00</Time> 426 </Item> 427 <Item> 428 <Source>laatikkoAla.png</Source> 429 <Name>laatikkoAla</Name> 430 <Importer>TextureImporter</Importer> 431 <Processor>TextureProcessor</Processor> 432 <Options>None</Options> 433 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoAla.xnb</Output> 434 <Time>2015-07-23T09:48:10.7674045+03:00</Time> 435 </Item> 436 <Item> 437 <Source>laatikkoYla.png</Source> 438 <Name>laatikkoYla</Name> 439 <Importer>TextureImporter</Importer> 440 <Processor>TextureProcessor</Processor> 441 <Options>None</Options> 442 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoYla.xnb</Output> 443 <Time>2015-07-23T09:48:09.4569961+03:00</Time> 444 </Item> 445 <Item> 446 <Source>kalja.png</Source> 447 <Name>kalja</Name> 448 <Importer>TextureImporter</Importer> 449 <Processor>TextureProcessor</Processor> 450 <Options>None</Options> 451 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kalja.xnb</Output> 452 <Time>2015-07-23T09:48:09.7845982+03:00</Time> 453 </Item> 454 <Item> 455 <Source>laatikkoYla2.png</Source> 456 <Name>laatikkoYla2</Name> 457 <Importer>TextureImporter</Importer> 458 <Processor>TextureProcessor</Processor> 459 <Options>None</Options> 460 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoYla2.xnb</Output> 461 <Time>2015-07-23T09:48:10.7830046+03:00</Time> 462 </Item> 463 <Item> 464 <Source>laatikkoAla2.png</Source> 465 <Name>laatikkoAla2</Name> 466 <Importer>TextureImporter</Importer> 467 <Processor>TextureProcessor</Processor> 468 <Options>None</Options> 469 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoAla2.xnb</Output> 470 <Time>2015-07-23T09:48:10.5490031+03:00</Time> 471 </Item> 472 <Item> 473 <Source>laatikkoAla3.png</Source> 474 <Name>laatikkoAla3</Name> 475 <Importer>TextureImporter</Importer> 476 <Processor>TextureProcessor</Processor> 477 <Options>None</Options> 478 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoAla3.xnb</Output> 479 <Time>2015-07-23T09:48:10.5490031+03:00</Time> 480 </Item> 481 <Item> 482 <Source>laatikkoYla3.png</Source> 483 <Name>laatikkoYla3</Name> 484 <Importer>TextureImporter</Importer> 485 <Processor>TextureProcessor</Processor> 486 <Options>None</Options> 487 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoYla3.xnb</Output> 488 <Time>2015-07-23T09:48:10.7986047+03:00</Time> 489 </Item> 490 <Item> 491 <Source>ammus.png</Source> 492 <Name>ammus</Name> 493 <Importer>TextureImporter</Importer> 494 <Processor>TextureProcessor</Processor> 495 <Options>None</Options> 496 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\ammus.xnb</Output> 497 <Time>2015-07-23T09:48:10.2058009+03:00</Time> 498 </Item> 499 <Item> 500 <Source>banana.png</Source> 501 <Name>banana</Name> 502 <Importer>TextureImporter</Importer> 503 <Processor>TextureProcessor</Processor> 504 <Options>None</Options> 505 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\banana.xnb</Output> 506 <Time>2015-07-23T09:48:10.1902008+03:00</Time> 426 507 </Item> 427 508 <Item> … … 432 513 <Options>None</Options> 433 514 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\hahmo.anim.xnb</Output> 434 <Time>2014-07-01T19:29:00+03:00</Time> 435 </Item> 436 <Item> 437 <Source>laatikkoAla.png</Source> 438 <Name>laatikkoAla</Name> 439 <Importer>TextureImporter</Importer> 440 <Processor>TextureProcessor</Processor> 441 <Options>None</Options> 442 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoAla.xnb</Output> 443 <Time>2015-07-21T11:06:44+03:00</Time> 444 </Item> 445 <Item> 446 <Source>laatikkoYla.png</Source> 447 <Name>laatikkoYla</Name> 448 <Importer>TextureImporter</Importer> 449 <Processor>TextureProcessor</Processor> 450 <Options>None</Options> 451 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoYla.xnb</Output> 452 <Time>2015-07-21T11:06:08+03:00</Time> 453 </Item> 454 <Item> 455 <Source>kalja.png</Source> 456 <Name>kalja</Name> 457 <Importer>TextureImporter</Importer> 458 <Processor>TextureProcessor</Processor> 459 <Options>None</Options> 460 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\kalja.xnb</Output> 461 <Time>2015-07-21T16:37:40+03:00</Time> 462 </Item> 463 <Item> 464 <Source>laatikkoYla2.png</Source> 465 <Name>laatikkoYla2</Name> 466 <Importer>TextureImporter</Importer> 467 <Processor>TextureProcessor</Processor> 468 <Options>None</Options> 469 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoYla2.xnb</Output> 470 <Time>2015-07-21T11:49:44+03:00</Time> 471 </Item> 472 <Item> 473 <Source>laatikkoAla2.png</Source> 474 <Name>laatikkoAla2</Name> 475 <Importer>TextureImporter</Importer> 476 <Processor>TextureProcessor</Processor> 477 <Options>None</Options> 478 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoAla2.xnb</Output> 479 <Time>2015-07-21T11:50:10+03:00</Time> 480 </Item> 481 <Item> 482 <Source>laatikkoAla3.png</Source> 483 <Name>laatikkoAla3</Name> 484 <Importer>TextureImporter</Importer> 485 <Processor>TextureProcessor</Processor> 486 <Options>None</Options> 487 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoAla3.xnb</Output> 488 <Time>2015-07-21T13:30:38+03:00</Time> 489 </Item> 490 <Item> 491 <Source>laatikkoYla3.png</Source> 492 <Name>laatikkoYla3</Name> 493 <Importer>TextureImporter</Importer> 494 <Processor>TextureProcessor</Processor> 495 <Options>None</Options> 496 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\laatikkoYla3.xnb</Output> 497 <Time>2015-07-21T13:29:42+03:00</Time> 498 </Item> 499 <Item> 500 <Source>ammus.png</Source> 501 <Name>ammus</Name> 502 <Importer>TextureImporter</Importer> 503 <Processor>TextureProcessor</Processor> 504 <Options>None</Options> 505 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\ammus.xnb</Output> 506 <Time>2015-07-22T13:02:58.0600138+03:00</Time> 507 </Item> 508 <Item> 509 <Source>banana.png</Source> 510 <Name>banana</Name> 511 <Importer>TextureImporter</Importer> 512 <Processor>TextureProcessor</Processor> 513 <Options>None</Options> 514 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\banana.xnb</Output> 515 <Time>2015-07-22T13:12:18.6218138+03:00</Time> 515 <Time>2015-07-23T09:48:10.1902008+03:00</Time> 516 </Item> 517 <Item> 518 <Source>pimeys.png</Source> 519 <Name>pimeys</Name> 520 <Importer>TextureImporter</Importer> 521 <Processor>TextureProcessor</Processor> 522 <Options>None</Options> 523 <Output>C:\MyTemp\NoelV\peli0.0.0.3\turhakepeli\turhakepeli\turhakepeli\bin\x86\Debug\Content\pimeys.xnb</Output> 524 <Time>2015-07-23T11:41:36.0098395+03:00</Time> 516 525 </Item> 517 526 <BuildSuccessful>true</BuildSuccessful> … … 561 570 <Assembly> 562 571 <Key>C:\Windows\Microsoft.Net\assembly\GAC_32\Microsoft.Xna.Framework.Content.Pipeline\v4.0_4.0.0.0__842cf8be1de50553\Microsoft.Xna.Framework.Content.Pipeline.dll</Key> 563 <Value>2015-07-09T1 4:02:54.8262127+03:00</Value>572 <Value>2015-07-09T13:22:38.4690053+03:00</Value> 564 573 </Assembly> 565 574 </Assemblies> -
2015/30/NoelV/peli0.0.0.3/turhakepeli/turhakepeli/turhakepeliContent/turhakepeliContent.contentproj
r6931 r6972 458 458 </Compile> 459 459 </ItemGroup> 460 <ItemGroup> 461 <Compile Include="pimeys.png"> 462 <Name>pimeys</Name> 463 <Importer>TextureImporter</Importer> 464 <Processor>TextureProcessor</Processor> 465 </Compile> 466 </ItemGroup> 460 467 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 461 468 <!-- 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.