チェンジセット 3544
- コミット日時:
- 2010/03/14 22:14:54 (2 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/gunyarapaint/branches/gunyarapaint/compat/src/gunyarapaint.as
r3541 r3544 309 309 case 82: // r 310 310 // Rキーの状態 = 押下中 311 m_module.should StartAfterDrawing= true;311 m_module.shouldDrawFromEndPoint = true; 312 312 break; 313 313 // 20090905-haku2 ins start 314 314 case 84: // t 315 315 // Tキーの状態 = 押下中 316 m_module.should StartBeforeDrawing= true;316 m_module.shouldDrawFromStartPoint = true; 317 317 break; 318 318 // 20090905-haku2 ins end … … 394 394 case 82: // r 395 395 // Rキーの状態 = 解放 396 m_module.should StartAfterDrawing= false;396 m_module.shouldDrawFromEndPoint = false; 397 397 break; 398 398 // 20090905-haku2 ins start 399 399 case 84: // t 400 400 // Tキーの状態 = 解放 401 m_module.should StartBeforeDrawing= false;401 m_module.shouldDrawFromStartPoint = false; 402 402 break; 403 403 // 20090905-haku2 ins end as3/gunyarapaint/branches/gunyarapaint/compat/src/org/libspark/gunyarapaint/controls/MovingCanvasModule.as
r3535 r3544 35 35 public function stop(x:Number, y:Number):void 36 36 { 37 saveCoordinate(x, y); 37 38 } 38 39

