- Timestamp:
- 2016-03-12 15:04:38 (7 years ago)
- Location:
- 2015/27/JaakkoS
- Files:
-
- 30 added
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/27/JaakkoS/RPGpeli/RPGpeli/RPGpeli/RPGpeli.cs
r7126 r7136 9 9 public class RPGpeli : PhysicsGame 10 10 { 11 12 13 11 PhysicsObject pelaaja; 14 12 PhysicsObject Vihu; 15 13 SoundEffect Karjaisu = LoadSoundEffect("Rpgkarjaisu"); 16 14 Image ritariKuva = LoadImage("ritari"); 15 Image aaltoviiva = LoadImage("aalto"); 17 16 Image Vihukuva1 = LoadImage("Vihollien1"); 18 17 Image Vihukuva1T = LoadImage("Vihollinen1Taka"); … … 30 29 Animation ritariTaakseAnim = new Animation(ritariTaakse); 31 30 Image ritariTaka = LoadImage("Ritaritaka"); 31 static private Image[] RHyokE = LoadImages("RHyökkäysE1", "RHyökkäysE2", "RHyökkäysE3"); 32 Animation RHyokkaysEAnim = new Animation(RHyokE); 33 static private Image[] RHyokT = LoadImages("RHyökkäysT1", "RHyökkäysT2", "RHyökkäysT3"); 34 Animation RHyokkaysTAnim = new Animation(RHyokT); 35 static private Image[] RHyokV = LoadImages("RhyökkäysO1", "RhyökkäysO2", "RHyökkäysO3"); 36 Animation RHyokkaysVAnim = new Animation(RHyokV); 37 static private Image[] RHyokO = LoadImages("RhyökkäysV1", "RhyökkäysV2", "RHyökkäysV3"); 38 Animation RHyokkaysOAnim = new Animation(RHyokO); 39 32 40 33 41 static private Image[] Vihueteen = LoadImages("V1AnimaatioE1", "V1AnimaatioE2"); 34 42 Animation VihuAnim = new Animation(Vihueteen); 35 43 44 Queue<Widget> sydanfifo = new Queue<Widget>(); 45 46 bool damage = true; 47 48 Dictionary<Direction, Animation> hyokkaykset = new Dictionary<Direction, Animation>(); 49 Direction suunta = Direction.Down; 36 50 37 51 public override void Begin() 38 52 { 39 53 hyokkaykset.Add(Direction.Right, RHyokkaysOAnim); 54 hyokkaykset.Add(Direction.Left, RHyokkaysVAnim); 55 hyokkaykset.Add(Direction.Up, RHyokkaysTAnim); 56 hyokkaykset.Add(Direction.Down, RHyokkaysEAnim); 57 40 58 41 59 pelaaja = new PhysicsObject(50, 100); 42 60 pelaaja.Image = ritariKuva; 43 pelaaja.LinearDamping = 0.9 0;61 pelaaja.LinearDamping = 0.9; 44 62 pelaaja.Tag = "pelaaja"; 45 63 pelaaja.CanRotate = false; 46 64 Add(pelaaja); 65 AddCollisionHandler(pelaaja, "Vihollinen", PelaajaOttidmg); 47 66 48 lisaaLuola(300, 200); 67 HorizontalLayout asettelu = new HorizontalLayout(); 68 asettelu.Spacing = 10; 69 70 Widget sydammet = new Widget(asettelu); 71 sydammet.Color = Color.Transparent; 72 sydammet.X = Screen.Left + 250; 73 sydammet.Y = Screen.Top - 20; 74 Add(sydammet); 75 76 for (int i = 0; i < 10; i++) 77 { 78 Widget sydan = new Widget(30, 30, Shape.Heart); 79 sydan.Color = Color.Black; 80 sydammet.Add(sydan); 81 sydanfifo.Enqueue(sydan); 82 } 83 84 85 //lisaaLuola(0, 200); 86 87 Level.CreateBorders(); 49 88 50 89 PhoneBackButton.Listen(ConfirmExit, "Lopeta peli"); … … 54 93 Keyboard.Listen(Key.Left, ButtonState.Down, LiikutaPelaajaa, "Liiku vasemmalle", pelaaja, new Vector(-600, 0)); 55 94 Keyboard.Listen(Key.Right, ButtonState.Down, LiikutaPelaajaa, "Liiku oikealle", pelaaja, new Vector(600, 0)); 56 Keyboard.Listen(Key.Up, ButtonState.Pressed, delegate { pelaaja.Animation = ritariTaakseAnim; pelaaja.Animation.FPS = 4; pelaaja.Animation.Start(); }, ""); 57 Keyboard.Listen(Key.Down, ButtonState.Pressed, delegate { pelaaja.Animation = ritariEteenAnim; pelaaja.Animation.FPS = 4; pelaaja.Animation.Start(); }, ""); 58 Keyboard.Listen(Key.Left, ButtonState.Pressed, delegate { pelaaja.Animation = ritariVasenAnim; pelaaja.Animation.FPS = 4; pelaaja.Animation.Start(); }, ""); 59 Keyboard.Listen(Key.Right, ButtonState.Pressed, delegate { pelaaja.Animation = ritariOikeaAnim; pelaaja.Animation.FPS = 4; pelaaja.Animation.Start(); }, ""); 95 Keyboard.Listen(Key.Up, ButtonState.Pressed, LaitaAnimaatio, null, ritariTaakseAnim, Direction.Up); 96 Keyboard.Listen(Key.Down, ButtonState.Pressed, LaitaAnimaatio, null, ritariEteenAnim, Direction.Down); 97 Keyboard.Listen(Key.Right, ButtonState.Pressed, LaitaAnimaatio, null, ritariOikeaAnim, Direction.Right); 98 Keyboard.Listen(Key.Left, ButtonState.Pressed, LaitaAnimaatio, null, ritariVasenAnim, Direction.Left); 99 //Keyboard.Listen(Key.Down, ButtonState.Pressed, delegate { pelaaja.Animation = ritariEteenAnim; pelaaja.Animation.FPS = 4; pelaaja.Animation.Start(); }, ""); 100 //Keyboard.Listen(Key.Left, ButtonState.Pressed, delegate { pelaaja.Animation = ritariVasenAnim; pelaaja.Animation.FPS = 4; pelaaja.Animation.Start(); }, ""); 101 //Keyboard.Listen(Key.Right, ButtonState.Pressed, delegate { pelaaja.Animation = ritariOikeaAnim; pelaaja.Animation.FPS = 4; pelaaja.Animation.Start(); }, ""); 60 102 Keyboard.Listen(Key.Up, ButtonState.Released, delegate { pelaaja.Animation.Stop(); pelaaja.Image = ritariTaka; }, ""); 61 103 Keyboard.Listen(Key.Down, ButtonState.Released, delegate { pelaaja.Animation.Stop(); pelaaja.Image = ritariKuva; }, ""); 62 104 Keyboard.Listen(Key.Left, ButtonState.Released, delegate { pelaaja.Animation.Stop(); }, ""); 63 105 Keyboard.Listen(Key.Right, ButtonState.Released, delegate { pelaaja.Animation.Stop(); }, ""); 106 Keyboard.Listen(Key.Space, ButtonState.Pressed, Hyokkaa, "hyökkää"); 64 107 65 108 SmoothTextures = false; 66 109 } 67 110 111 void LaitaAnimaatio(Animation anim, Direction uusiSuunta) 112 { 113 pelaaja.Animation = ritariTaakseAnim; 114 pelaaja.Animation.FPS = 4; 115 pelaaja.Animation.Start(); 116 suunta = uusiSuunta; 117 } 68 118 69 70 119 void Hyokkaa() 120 { 121 pelaaja.Animation = hyokkaykset[suunta]; 122 pelaaja.Animation.FPS = 8; 123 pelaaja.Animation.Start(1); 124 } 71 125 void LiikutaPelaajaa(PhysicsObject pelaaja, Vector vektori) 72 126 { … … 77 131 { 78 132 Vihu = new PhysicsObject(50, 70); 79 Vihu.MaximumLifetime = TimeSpan.FromSeconds( 10.0);133 Vihu.MaximumLifetime = TimeSpan.FromSeconds(5.0); 80 134 Vihu.X = x; 81 135 Vihu.Y = y; … … 87 141 88 142 FollowerBrain seuraajaAivot = new FollowerBrain("pelaaja"); 89 //seuraajaAivot.TargetDistance.AddTrigger(10, TriggerDirection.Down, Karjaise);143 90 144 seuraajaAivot.DistanceToTarget.AddTrigger(60, TriggerDirection.Down, Karjaise); 91 145 seuraajaAivot.Speed = 150; 92 146 Vihu.Brain = seuraajaAivot; 147 93 148 94 149 Add(Vihu); … … 117 172 } 118 173 174 void PelaajaOttidmg(PhysicsObject pelaaja, PhysicsObject Vihollinen) 175 { 176 MessageDisplay.Add("auts!"); 177 if (sydanfifo.Count > 0) 178 { 179 if (damage) 180 { 181 sydanfifo.Dequeue().Destroy(); 182 damage = false; 183 Timer.SingleShot(1.0, delegate { damage = true; if ((pelaaja.AbsolutePosition - Vihollinen.AbsolutePosition).Magnitude < 90) PelaajaOttidmg(pelaaja, Vihollinen); }); 184 } 185 if (sydanfifo.Count <= 0) 186 { 187 pelaaja.Destroy(); 188 } 189 } 190 else 191 { 192 pelaaja.Destroy(); 193 } 194 } 195 119 196 } -
2015/27/JaakkoS/RPGpeli/RPGpeli/RPGpeli/RPGpeli.csproj.Debug.cachefile
r7126 r7136 15 15 Content\VihollinenVasen.xnb 16 16 Content\luola.xnb 17 Content\Rpgkarjaisu.xnb18 17 Content\V1AnimaatioE1.xnb 19 18 Content\V1AnimaatioE2.xnb 19 Content\Rpgkarjaisu.xnb 20 Content\RHyökkÀysE1.xnb 21 Content\RHyökkÀysE2.xnb 22 Content\RHyökkÀysE3.xnb 23 Content\RhyökkÀysO1.xnb 24 Content\RhyökkÀysO2.xnb 25 Content\RHyökkÀysO3.xnb 26 Content\RHyökkÀysT1.xnb 27 Content\RHyökkÀysT2.xnb 28 Content\RHyökkÀysT3.xnb 29 Content\RhyökkÀysV1.xnb 30 Content\RhyökkÀysV2.xnb 31 Content\RHyökkÀysV3.xnb 20 32 Content\Vihollien1.png -
2015/27/JaakkoS/RPGpeli/RPGpeli/RPGpeli/obj/x86/Debug/ContentPipeline-{387B9DE7-CFA5-49C1-8050-699303AA8829}.xml
r7126 r7136 9 9 <Options>None</Options> 10 10 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\Ritarioikealle.xnb</Output> 11 <Time>201 6-02-20T10:03:49.4376839+02:00</Time>11 <Time>2015-12-12T13:28:30.9733262+02:00</Time> 12 12 </Item> 13 13 <Item> … … 18 18 <Options>None</Options> 19 19 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\pelottavaritari.xnb</Output> 20 <Time>201 6-02-20T10:03:49.4376839+02:00</Time>20 <Time>2015-12-12T11:22:42.5082551+02:00</Time> 21 21 </Item> 22 22 <Item> … … 27 27 <Options>None</Options> 28 28 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\Ritaritaka.xnb</Output> 29 <Time>201 6-02-20T10:03:49.5936839+02:00</Time>29 <Time>2015-12-12T11:22:42.5082551+02:00</Time> 30 30 </Item> 31 31 <Item> … … 36 36 <Options>None</Options> 37 37 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\Ritarivasemmalle.xnb</Output> 38 <Time>201 6-02-20T10:03:49.4376839+02:00</Time>38 <Time>2015-12-12T11:22:42.5082551+02:00</Time> 39 39 </Item> 40 40 <Item> … … 45 45 <Options>None</Options> 46 46 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RanimaatioE1.xnb</Output> 47 <Time>201 6-02-20T10:03:49.4532839+02:00</Time>47 <Time>2015-12-12T12:51:09.2620253+02:00</Time> 48 48 </Item> 49 49 <Item> … … 54 54 <Options>None</Options> 55 55 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RanimaatioE2.xnb</Output> 56 <Time>201 6-02-20T10:03:49.4532839+02:00</Time>56 <Time>2015-12-12T12:51:09.2776256+02:00</Time> 57 57 </Item> 58 58 <Item> … … 63 63 <Options>None</Options> 64 64 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RanimaatioO.xnb</Output> 65 <Time>201 6-02-20T10:03:49.4376839+02:00</Time>65 <Time>2015-12-12T12:51:31.6032566+02:00</Time> 66 66 </Item> 67 67 <Item> … … 72 72 <Options>None</Options> 73 73 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RanimaatioT1.xnb</Output> 74 <Time>201 6-02-20T10:03:49.5780839+02:00</Time>74 <Time>2015-12-12T12:52:25.840518+02:00</Time> 75 75 </Item> 76 76 <Item> … … 81 81 <Options>None</Options> 82 82 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RanimaatioT2.xnb</Output> 83 <Time>201 6-02-20T10:03:49.5936839+02:00</Time>83 <Time>2015-12-12T12:52:25.840518+02:00</Time> 84 84 </Item> 85 85 <Item> … … 90 90 <Options>None</Options> 91 91 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RanimaatioV.xnb</Output> 92 <Time>201 6-02-20T10:03:49.4532839+02:00</Time>92 <Time>2015-12-12T12:52:56.0426988+02:00</Time> 93 93 </Item> 94 94 <Item> … … 99 99 <Options>None</Options> 100 100 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\ritari.xnb</Output> 101 <Time>201 6-02-20T10:03:49.5936839+02:00</Time>101 <Time>2015-12-12T13:24:52.7229377+02:00</Time> 102 102 </Item> 103 103 <Item> … … 108 108 <Options>None</Options> 109 109 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\Vihollien1.xnb</Output> 110 <Time>201 6-02-20T10:03:49.4532839+02:00</Time>110 <Time>2015-12-12T14:21:17.6058041+02:00</Time> 111 111 </Item> 112 112 <Item> … … 117 117 <Options>None</Options> 118 118 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\Vihollinen1Taka.xnb</Output> 119 <Time>201 6-02-20T10:03:49.5780839+02:00</Time>119 <Time>2015-12-12T14:21:17.6058041+02:00</Time> 120 120 </Item> 121 121 <Item> … … 126 126 <Options>None</Options> 127 127 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\VihollinenOikea.xnb</Output> 128 <Time>201 6-02-20T10:03:49.4688839+02:00</Time>128 <Time>2015-12-12T14:21:17.6058041+02:00</Time> 129 129 </Item> 130 130 <Item> … … 135 135 <Options>None</Options> 136 136 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\VihollinenVasen.xnb</Output> 137 <Time>201 6-02-20T10:03:49.4376839+02:00</Time>137 <Time>2015-12-12T14:23:37.5157434+02:00</Time> 138 138 </Item> 139 139 <Item> … … 144 144 <Options>None</Options> 145 145 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\luola.xnb</Output> 146 <Time>2016-02-20T12:01:18.1395839+02:00</Time> 146 <Time>2016-03-12T10:00:14.0043908+02:00</Time> 147 </Item> 148 <Item> 149 <Source>V1AnimaatioE1.png</Source> 150 <Name>V1AnimaatioE1</Name> 151 <Importer>TextureImporter</Importer> 152 <Processor>TextureProcessor</Processor> 153 <Options>None</Options> 154 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\V1AnimaatioE1.xnb</Output> 155 <Time>2016-03-12T10:00:13.988794+02:00</Time> 156 </Item> 157 <Item> 158 <Source>V1AnimaatioE2.png</Source> 159 <Name>V1AnimaatioE2</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\V1AnimaatioE2.xnb</Output> 164 <Time>2016-03-12T10:00:14.0043908+02:00</Time> 147 165 </Item> 148 166 <Item> … … 153 171 <Options>None</Options> 154 172 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\Rpgkarjaisu.xnb</Output> 155 <Time>2016-02-20T13:25:54.4423839+02:00</Time> 156 </Item> 157 <Item> 158 <Source>V1AnimaatioE1.png</Source> 159 <Name>V1AnimaatioE1</Name> 160 <Importer>TextureImporter</Importer> 161 <Processor>TextureProcessor</Processor> 162 <Options>None</Options> 163 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\V1AnimaatioE1.xnb</Output> 164 <Time>2016-02-20T14:07:09.8454839+02:00</Time> 165 </Item> 166 <Item> 167 <Source>V1AnimaatioE2.png</Source> 168 <Name>V1AnimaatioE2</Name> 169 <Importer>TextureImporter</Importer> 170 <Processor>TextureProcessor</Processor> 171 <Options>None</Options> 172 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\V1AnimaatioE2.xnb</Output> 173 <Time>2016-02-20T14:07:09.8610839+02:00</Time> 173 <Time>2016-03-12T10:00:14.0043908+02:00</Time> 174 </Item> 175 <Item> 176 <Source>RHyökkäysE1.png</Source> 177 <Name>RHyökkäysE1</Name> 178 <Importer>TextureImporter</Importer> 179 <Processor>TextureProcessor</Processor> 180 <Options>None</Options> 181 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkäysE1.xnb</Output> 182 <Time>2016-03-12T12:46:31.6595136+02:00</Time> 183 </Item> 184 <Item> 185 <Source>RHyökkäysE2.png</Source> 186 <Name>RHyökkäysE2</Name> 187 <Importer>TextureImporter</Importer> 188 <Processor>TextureProcessor</Processor> 189 <Options>None</Options> 190 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkäysE2.xnb</Output> 191 <Time>2016-03-12T12:46:31.6645141+02:00</Time> 192 </Item> 193 <Item> 194 <Source>RHyökkäysE3.png</Source> 195 <Name>RHyökkäysE3</Name> 196 <Importer>TextureImporter</Importer> 197 <Processor>TextureProcessor</Processor> 198 <Options>None</Options> 199 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkäysE3.xnb</Output> 200 <Time>2016-03-12T12:46:31.6695146+02:00</Time> 201 </Item> 202 <Item> 203 <Source>RhyökkäysO1.png</Source> 204 <Name>RhyökkäysO1</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 <Options>None</Options> 208 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RhyökkäysO1.xnb</Output> 209 <Time>2016-03-12T12:46:31.673515+02:00</Time> 210 </Item> 211 <Item> 212 <Source>RhyökkäysO2.png</Source> 213 <Name>RhyökkäysO2</Name> 214 <Importer>TextureImporter</Importer> 215 <Processor>TextureProcessor</Processor> 216 <Options>None</Options> 217 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RhyökkäysO2.xnb</Output> 218 <Time>2016-03-12T12:46:31.6765153+02:00</Time> 219 </Item> 220 <Item> 221 <Source>RHyökkäysO3.png</Source> 222 <Name>RHyökkäysO3</Name> 223 <Importer>TextureImporter</Importer> 224 <Processor>TextureProcessor</Processor> 225 <Options>None</Options> 226 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkäysO3.xnb</Output> 227 <Time>2016-03-12T12:46:31.6785155+02:00</Time> 228 </Item> 229 <Item> 230 <Source>RHyökkäysT1.png</Source> 231 <Name>RHyökkäysT1</Name> 232 <Importer>TextureImporter</Importer> 233 <Processor>TextureProcessor</Processor> 234 <Options>None</Options> 235 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkäysT1.xnb</Output> 236 <Time>2016-03-12T12:46:31.6815158+02:00</Time> 237 </Item> 238 <Item> 239 <Source>RHyökkäysT2.png</Source> 240 <Name>RHyökkäysT2</Name> 241 <Importer>TextureImporter</Importer> 242 <Processor>TextureProcessor</Processor> 243 <Options>None</Options> 244 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkäysT2.xnb</Output> 245 <Time>2016-03-12T12:46:31.683516+02:00</Time> 246 </Item> 247 <Item> 248 <Source>RHyökkäysT3.png</Source> 249 <Name>RHyökkäysT3</Name> 250 <Importer>TextureImporter</Importer> 251 <Processor>TextureProcessor</Processor> 252 <Options>None</Options> 253 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkäysT3.xnb</Output> 254 <Time>2016-03-12T12:46:31.6865163+02:00</Time> 255 </Item> 256 <Item> 257 <Source>RhyökkäysV1.png</Source> 258 <Name>RhyökkäysV1</Name> 259 <Importer>TextureImporter</Importer> 260 <Processor>TextureProcessor</Processor> 261 <Options>None</Options> 262 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RhyökkäysV1.xnb</Output> 263 <Time>2016-03-12T12:46:31.6885165+02:00</Time> 264 </Item> 265 <Item> 266 <Source>RhyökkäysV2.png</Source> 267 <Name>RhyökkäysV2</Name> 268 <Importer>TextureImporter</Importer> 269 <Processor>TextureProcessor</Processor> 270 <Options>None</Options> 271 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RhyökkäysV2.xnb</Output> 272 <Time>2016-03-12T12:46:31.6915168+02:00</Time> 273 </Item> 274 <Item> 275 <Source>RHyökkäysV3.png</Source> 276 <Name>RHyökkäysV3</Name> 277 <Importer>TextureImporter</Importer> 278 <Processor>TextureProcessor</Processor> 279 <Options>None</Options> 280 <Output>C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkäysV3.xnb</Output> 281 <Time>2016-03-12T12:46:31.693517+02:00</Time> 174 282 </Item> 175 283 <BuildSuccessful>true</BuildSuccessful> … … 220 328 <Assembly> 221 329 <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> 222 <Value>2015-09-16T 19:09:43.6453658+03:00</Value>330 <Value>2015-09-16T20:00:09.2376023+03:00</Value> 223 331 </Assembly> 224 332 </Assemblies> -
2015/27/JaakkoS/RPGpeli/RPGpeli/RPGpeli/obj/x86/Debug/RPGpeli.csproj.FileListAbsolute.txt
r7126 r7136 27 27 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\V1AnimaatioE1.xnb 28 28 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\V1AnimaatioE2.xnb 29 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkÀysE1.xnb 30 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkÀysE2.xnb 31 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkÀysE3.xnb 32 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RhyökkÀysO1.xnb 33 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RhyökkÀysO2.xnb 34 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkÀysO3.xnb 35 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkÀysT1.xnb 36 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkÀysT2.xnb 37 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkÀysT3.xnb 38 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RhyökkÀysV1.xnb 39 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RhyökkÀysV2.xnb 40 C:\MyTemp\JaakkoS\RPGpeli\RPGpeli\RPGpeli\bin\x86\Debug\Content\RHyökkÀysV3.xnb -
2015/27/JaakkoS/RPGpeli/RPGpeli/RPGpeli/obj/x86/Debug/cachefile-{387B9DE7-CFA5-49C1-8050-699303AA8829}-targetpath.txt
r7126 r7136 15 15 Content\VihollinenVasen.xnb 16 16 Content\luola.xnb 17 Content\Rpgkarjaisu.xnb18 17 Content\V1AnimaatioE1.xnb 19 18 Content\V1AnimaatioE2.xnb 19 Content\Rpgkarjaisu.xnb 20 Content\RHyökkÀysE1.xnb 21 Content\RHyökkÀysE2.xnb 22 Content\RHyökkÀysE3.xnb 23 Content\RhyökkÀysO1.xnb 24 Content\RhyökkÀysO2.xnb 25 Content\RHyökkÀysO3.xnb 26 Content\RHyökkÀysT1.xnb 27 Content\RHyökkÀysT2.xnb 28 Content\RHyökkÀysT3.xnb 29 Content\RhyökkÀysV1.xnb 30 Content\RhyökkÀysV2.xnb 31 Content\RHyökkÀysV3.xnb 20 32 Content\Vihollien1.png -
2015/27/JaakkoS/RPGpeli/RPGpeli/RPGpeliContent/RPGpeliContent.contentproj
r7126 r7136 165 165 </Compile> 166 166 </ItemGroup> 167 <ItemGroup> 168 <Compile Include="RHyökkäysE1.png"> 169 <Name>RHyökkäysE1</Name> 170 <Importer>TextureImporter</Importer> 171 <Processor>TextureProcessor</Processor> 172 </Compile> 173 <Compile Include="RHyökkäysE2.png"> 174 <Name>RHyökkäysE2</Name> 175 <Importer>TextureImporter</Importer> 176 <Processor>TextureProcessor</Processor> 177 </Compile> 178 <Compile Include="RHyökkäysE3.png"> 179 <Name>RHyökkäysE3</Name> 180 <Importer>TextureImporter</Importer> 181 <Processor>TextureProcessor</Processor> 182 </Compile> 183 <Compile Include="RhyökkäysO1.png"> 184 <Name>RhyökkäysO1</Name> 185 <Importer>TextureImporter</Importer> 186 <Processor>TextureProcessor</Processor> 187 </Compile> 188 <Compile Include="RhyökkäysO2.png"> 189 <Name>RhyökkäysO2</Name> 190 <Importer>TextureImporter</Importer> 191 <Processor>TextureProcessor</Processor> 192 </Compile> 193 <Compile Include="RHyökkäysO3.png"> 194 <Name>RHyökkäysO3</Name> 195 <Importer>TextureImporter</Importer> 196 <Processor>TextureProcessor</Processor> 197 </Compile> 198 <Compile Include="RHyökkäysT1.png"> 199 <Name>RHyökkäysT1</Name> 200 <Importer>TextureImporter</Importer> 201 <Processor>TextureProcessor</Processor> 202 </Compile> 203 <Compile Include="RHyökkäysT2.png"> 204 <Name>RHyökkäysT2</Name> 205 <Importer>TextureImporter</Importer> 206 <Processor>TextureProcessor</Processor> 207 </Compile> 208 <Compile Include="RHyökkäysT3.png"> 209 <Name>RHyökkäysT3</Name> 210 <Importer>TextureImporter</Importer> 211 <Processor>TextureProcessor</Processor> 212 </Compile> 213 <Compile Include="RhyökkäysV1.png"> 214 <Name>RhyökkäysV1</Name> 215 <Importer>TextureImporter</Importer> 216 <Processor>TextureProcessor</Processor> 217 </Compile> 218 <Compile Include="RhyökkäysV2.png"> 219 <Name>RhyökkäysV2</Name> 220 <Importer>TextureImporter</Importer> 221 <Processor>TextureProcessor</Processor> 222 </Compile> 223 <Compile Include="RHyökkäysV3.png"> 224 <Name>RHyökkäysV3</Name> 225 <Importer>TextureImporter</Importer> 226 <Processor>TextureProcessor</Processor> 227 </Compile> 228 </ItemGroup> 167 229 <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\$(XnaFrameworkVersion)\Microsoft.Xna.GameStudio.ContentPipeline.targets" /> 168 230 <!-- 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.