チェンジセット 1526
- コミット日時:
- 2008/10/06 04:20:33 (3 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
ruby/jsplash/trunk/client2/jsplash/objects.js
r1525 r1526 133 133 if (!this.klass.isShapeObject) 134 134 { 135 this.rewind(); 135 136 this.play(); 136 this.rewind(); 137 } 138 } 139 140 if (this.isExecutable()) // This is needed to execute descendant tags! 141 { 142 this.executor.registerObject(this); 137 } 143 138 } 144 139 }, … … 204 199 205 200 this.depthMap[depth] = po; 201 if (po.isExecutable() && oid /* new instance */ ) // This is needed to execute descendant tags! 202 this.executor.registerObject(po); 203 206 204 } 207 205 ruby/jsplash/trunk/client2/jsplash/player.js
r1525 r1526 13 13 JSplash.Player.prototype = { 14 14 initialize: function(swf, svg) { 15 15 16 this.executor = new JSplash.Executor(); 16 17 this.executor.frameRate = swf.frameRate; ruby/jsplash/trunk/client2/jsplash/shaperenderer.js
r1525 r1526 100 100 var es_count = this.edgeStyles.length; 101 101 var fs_count = this.fillStyles.length; 102 103 if (JSplash.WireFrameMode) 104 this.edgeStyles = [{w:20, rgb:'000'}]; 102 105 103 106 for (var i = 0;i < len;i++) { … … 141 144 cur_lineStyle = rcd.ls ? (rcd.ls + es_ofs) : 0; 142 145 } 146 147 if (JSplash.WireFrameMode) 148 cur_lineStyle = 1; 143 149 } 144 150 else { … … 238 244 this.displayList.push(new JSplash.DisplayListEntry(0, i, E.oi+1)); 239 245 } 246 247 if (JSplash.WireFrameMode) 248 return; 240 249 241 250 var ent; … … 338 347 attrs = {d: commands.join(' '), fill: style_str}; 339 348 if (style.a) { 340 attrs .opacity= style.a;349 attrs["fill-opacity"] = style.a; 341 350 } 342 351

