Changeset 6774 for 2015/27


Ignore:
Timestamp:
2015-07-03 10:24:34 (8 years ago)
Author:
saraivio
Message:

Valmis.

Location:
2015/27/SampoR/Pommipeli
Files:
1 added
13 edited

Legend:

Unmodified
Added
Removed
  • 2015/27/SampoR/Pommipeli/Pommipeli/Pommipeli/Pommipeli.cs

    r6759 r6774  
    2020    Image otsikkoKuva = LoadImage("Otsikko"); 
    2121 
    22     IntMeter pisteLaskuri = new IntMeter(0,0,0); 
     22    IntMeter pisteLaskuri = new IntMeter(0, 0, 19); 
     23    DoubleMeter aikaLaskuri = new DoubleMeter(0, 0, double.MaxValue); 
    2324 
    2425 
     
    7475        LisaaNappaimet(); 
    7576        LuoPistelaskuri(); 
     77        LuoAikaLaskuri(); 
    7678        Camera.Follow(pelaaja1); 
    7779        Camera.ZoomFactor = 1.2; 
     
    210212        } 
    211213 
    212  
    213  
     214    } 
     215 
     216    void LuoAikaLaskuri() 
     217    { 
     218        Timer aikaLaskuri = new Timer(); 
     219        aikaLaskuri.Start(); 
     220 
     221        Label aikaNaytto = new Label(); 
     222        aikaNaytto.TextColor = Color.Black; 
     223        aikaNaytto.Color = Color.White; 
     224        aikaNaytto.Position = new Vector(Screen.Right - 120, Screen.Top - 100); 
     225        aikaNaytto.DecimalPlaces = 1; 
     226        aikaNaytto.TextScale = new Vector(2, 2); 
     227        aikaNaytto.BindTo(aikaLaskuri.SecondCounter); 
     228        Add(aikaNaytto); 
    214229    } 
    215230 
  • 2015/27/SampoR/Pommipeli/Pommipeli/Pommipeli/Pommipeli.csproj.Debug.cachefile

    r6759 r6774  
    33Content\pommi.xnb 
    44Content\sotilas.xnb 
     5Content\Vihollinen.xnb 
     6Content\Otsikko.xnb 
    57Content\kentta1.xnb 
    6 Content\Vihollinen.xnb 
    78Content\NeverGo.xnb 
    89Content\Survival.xnb 
    9 Content\Otsikko.xnb 
    1010Content\NeverGo.wma 
    1111Content\Survival.wma 
  • 2015/27/SampoR/Pommipeli/Pommipeli/Pommipeli/obj/x86/Debug/cachefile-{E66DD545-885E-4E0E-8EF2-6E1200871AC7}-targetpath.txt

    r6759 r6774  
    33Content\pommi.xnb 
    44Content\sotilas.xnb 
     5Content\Vihollinen.xnb 
     6Content\Otsikko.xnb 
    57Content\kentta1.xnb 
    6 Content\Vihollinen.xnb 
    78Content\NeverGo.xnb 
    89Content\NeverGo.wma 
    910Content\Survival.xnb 
    1011Content\Survival.wma 
    11 Content\Otsikko.xnb 
Note: See TracChangeset for help on using the changeset viewer.