• R/O
  • SSH
  • HTTPS

nlgp1: Commit


Commit MetaInfo

Revision696 (tree)
Time2011-02-12 20:23:23
Authorbiikame

Log Message

Nlgp1.Sprite.Sprite.UnloadおよびUpdateを作成

Change Summary

Incremental Difference

--- trunk/Nlgp1/Nlgp1/Sprites/Sprite.cs (revision 695)
+++ trunk/Nlgp1/Nlgp1/Sprites/Sprite.cs (revision 696)
@@ -21,18 +21,18 @@
2121 /// <param name="World">Worldオブジェクト</param>
2222 /// <param name="location">現在の座標</param>
2323 public Sprite( ChipId chipId , World world , Vec2 location ) {
24+ this.ChipId = chipId;
25+ this.World = world;
26+ this.Location = location;
27+ this.DebugId = chipId.ToString();
2428 #region コレクション
2529 lock( spriteList )
2630 spriteList.Add( this );
2731 #endregion
28- this.ChipId = chipId;
29- this.World = world;
30- this.Location = location;
31- this.DebugId = chipId.ToString();
3232 }
3333
3434 /// <summary>
35- /// ゲームから削除される際に呼ばれます
35+ /// ステージから削除される際に呼ばれます
3636 /// </summary>
3737 public void Unload() {
3838 }
Show on old repository browser