Changeset 6692
- Timestamp:
- 2015-07-01 15:20:21 (7 years ago)
- Location:
- 2015/27/ohjaajat/TheLegendOfGabriel/TheLegendOfGabriel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
2015/27/ohjaajat/TheLegendOfGabriel/TheLegendOfGabriel/TheLegendOfGabriel/TheLegendOfGabriel.cs
r6632 r6692 100 100 public static Image ActiveItemFrameImageZ = LoadImage("activeitemframez"); 101 101 102 public static Image PlayerHealthImage = LoadImage("playerhealth");103 public static Image PlayerHealthEmptyImage = LoadImage("playerhealthempty");102 //public static Image PlayerHealthImage = LoadImage("playerhealth"); 103 //public static Image PlayerHealthEmptyImage = LoadImage("playerhealthempty"); 104 104 105 105 [AssetName("walkright")] … … 159 159 bar.Right = Screen.Right - 50; 160 160 bar.Top = Screen.Top - 50; 161 bar.Image = PlayerHealthEmptyImage;162 bar.BarImage = PlayerHealthImage;161 //bar.Image = PlayerHealthEmptyImage; 162 //bar.BarImage = PlayerHealthImage; 163 163 bar.BindTo(player.Health); 164 164 Add(bar); … … 297 297 frame = new GameObject(LetterImage); 298 298 frame.Image = LetterImage; 299 frame.Width = Window.Width * 0.25; 300 frame.Height = Window.Height * 0.25; 299 //frame.Width = Window.Width * 0.25; 300 //frame.Height = Window.Height * 0.25; 301 frame.Width = Level.Width * 0.25; 302 frame.Height = Level.Height * 0.25; 301 303 Add(frame); 302 304 -
2015/27/ohjaajat/TheLegendOfGabriel/TheLegendOfGabriel/TheLegendOfGabrielContent/TheLegendOfGabrielContent.contentproj
r6632 r6692 258 258 </ItemGroup> 259 259 <ItemGroup> 260 <Compile Include="playerhealth.png">261 <Name>playerhealth</Name>262 <Importer>TextureImporter</Importer>263 <Processor>TextureProcessor</Processor>264 </Compile>265 </ItemGroup>266 <ItemGroup>267 <Compile Include="playerhealthempty.png">268 <Name>playerhealthempty</Name>269 <Importer>TextureImporter</Importer>270 <Processor>TextureProcessor</Processor>271 </Compile>272 </ItemGroup>273 <ItemGroup>274 260 <Compile Include="level2.tmx"> 275 261 <Name>level2</Name> … … 277 263 <Importer>TextFileImporter</Importer> 278 264 <Processor>TextFileContentProcessor</Processor> 279 </Compile>280 </ItemGroup>281 <ItemGroup>282 <Compile Include="hobocave.tmx">283 <Name>hobocave</Name>284 <Importer>TextFileImporter</Importer>285 <Processor>TextFileContentProcessor</Processor>286 <CopyToOutputDirectory>Always</CopyToOutputDirectory>287 265 </Compile> 288 266 </ItemGroup>
Note: See TracChangeset
for help on using the changeset viewer.