チェンジセット 3544

差分発生行の前後
無視リスト:
コミット日時:
2010/03/14 22:14:54 (2 年前)
コミッタ:
hkrn
ログメッセージ:

following framework changes

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/gunyarapaint/branches/gunyarapaint/compat/src/gunyarapaint.as

    r3541 r3544  
    309309        case 82: // r 
    310310            // Rキーの状態 = 押下中 
    311             m_module.shouldStartAfterDrawing = true; 
     311            m_module.shouldDrawFromEndPoint = true; 
    312312            break; 
    313313        // 20090905-haku2 ins start 
    314314        case 84: // t 
    315315            // Tキーの状態 = 押下中 
    316             m_module.shouldStartBeforeDrawing = true; 
     316            m_module.shouldDrawFromStartPoint = true; 
    317317            break; 
    318318        // 20090905-haku2 ins end 
     
    394394        case 82: // r 
    395395            // Rキーの状態 = 解放 
    396             m_module.shouldStartAfterDrawing = false; 
     396            m_module.shouldDrawFromEndPoint = false; 
    397397            break; 
    398398        // 20090905-haku2 ins start 
    399399        case 84: // t 
    400400            // Tキーの状態 = 解放 
    401             m_module.shouldStartBeforeDrawing = false; 
     401            m_module.shouldDrawFromStartPoint = false; 
    402402            break; 
    403403        // 20090905-haku2 ins end 
  • as3/gunyarapaint/branches/gunyarapaint/compat/src/org/libspark/gunyarapaint/controls/MovingCanvasModule.as

    r3535 r3544  
    3535        public function stop(x:Number, y:Number):void 
    3636        { 
     37            saveCoordinate(x, y); 
    3738        } 
    3839