OSDN Git Service

movieclip の loop 初期値を true に (デバッグ用に false にしてた)
authorYoshihiro Yamazaki <yoya@awm.jp>
Fri, 28 Dec 2012 02:12:08 +0000 (11:12 +0900)
committerYoshihiro Yamazaki <yoya@awm.jp>
Fri, 28 Dec 2012 02:12:08 +0000 (11:12 +0900)
src/movieclip.js

index 194c8f7..099db97 100644 (file)
@@ -35,8 +35,8 @@ FlappMovieClip = function(parentMovieClip, matrix, colorTransform) {
     this.totalframes = 0;
     this.currentFrame = 0;
     this.playing = true;
-    // this.loop = true;
-    this.loop = false;
+    this.loop = true;
+//    this.loop = false;
     this.actionVarriableTable = {};
     this.actionVarriablOrigKeys = {};
 };