Show
Ignore:
Timestamp:
10/08/08 07:34:08 (3 months ago)
Author:
mokehehe
Message:

キー入力処理変更
Sキーでスクリーンショットを取れるように

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/haskell/nario/Actor/Kinoko.hs

    r20925 r20943  
    3232                        (x', y', vx', vy') = updateActorBase fld (x self, y self, vx self, vy self) 
    3333 
    34         render self imgres scrx sur = do 
    35                 putimg sur imgres imgtype ((x self) `div` one - chrSize `div` 2 - scrx) ((y self) `div` one - ofsH - 8) 
    36                 return () 
    37                 where 
    38                         imgtype = ImgKinoko 
     34        render self imgres scrx sur = 
     35                putimg sur imgres ImgKinoko ((x self) `div` one - chrSize `div` 2 - scrx) ((y self) `div` one - ofsH - 8) 
    3936 
    4037        bDead self = y self >= (screenHeight + chrSize * 3) * one || x self <= -chrSize * one