示例#1
0
    public void LandPath()
    {
        _Step = E_Step.Land;

        CanControlled = false;

        baseSpeed = _Player.pathInfo.PathLength / _Player.OverTime;//基本速度
    }
示例#2
0
    public void AdvanceStep()
    {
        switch (nextStep)
        {
        case E_Step.s_raw:
            nextStep = E_Step.s_processor;
            break;

        case E_Step.s_processor:
            nextStep = E_Step.s_case;
            break;

        case E_Step.s_case:
            nextStep = E_Step.s_colour;
            break;

        case E_Step.s_colour:
            nextStep = E_Step.s_complete;
            break;
        }
    }
示例#3
0
    public void ContinueToPlay()
    {
        CanControlled = true;

        _Step = E_Step.Play;
    }
示例#4
0
    public void PlayToContinue()
    {
        CanControlled = false;

        _Step = E_Step.Cointinue;
    }
示例#5
0
    public void GamePath()
    {
        _Step = E_Step.Play;

        baseSpeed = _Player.pathInfo.PathLength / _Player.OverTime;//基本速度
    }