当前位置: 首页>>代码示例>>C#>>正文


C# FStage.HandleAddedToFutile方法代码示例

本文整理汇总了C#中FStage.HandleAddedToFutile方法的典型用法代码示例。如果您正苦于以下问题:C# FStage.HandleAddedToFutile方法的具体用法?C# FStage.HandleAddedToFutile怎么用?C# FStage.HandleAddedToFutile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FStage的用法示例。


在下文中一共展示了FStage.HandleAddedToFutile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AddStageAtIndex

    public static void AddStageAtIndex(FStage stageToAdd, int newIndex)
    {
        int stageIndex = _stages.IndexOf(stageToAdd);

        if(newIndex > _stages.Count) //if it's past the end, make it at the end
        {
            newIndex = _stages.Count;
        }

        if(stageIndex == newIndex) return; //if it's already at the right index, just leave it there

        if(stageIndex == -1) //add it if it's not in the stages already
        {
            stageToAdd.HandleAddedToFutile();

            _stages.Insert(newIndex, stageToAdd);
        }
        else //if stage is already in the stages, move it to the desired index
        {
            _stages.RemoveAt(stageIndex);

            if(stageIndex < newIndex)
            {
                _stages.Insert(newIndex-1, stageToAdd); //gotta subtract 1 to account for it moving in the order
            }
            else
            {
                _stages.Insert(newIndex, stageToAdd);
            }
        }

        UpdateStageIndices();
    }
开发者ID:MattRix,项目名称:Madness,代码行数:33,代码来源:Futile.cs

示例2: AddStage

    public static void AddStage(FStage stageToAdd)
    {
        int stageIndex = _stages.IndexOf(stageToAdd);

        if(stageIndex == -1) //add it if it's not a stage
        {
            stageToAdd.HandleAddedToFutile();
            _stages.Add(stageToAdd);
            UpdateStageIndices();
        }
        else if(stageIndex != _stages.Count-1) //if stage is already in the stages, put it at the top of the stages if it's not already
        {
            _stages.RemoveAt(stageIndex);
            _stages.Add(stageToAdd);
            UpdateStageIndices();
        }
    }
开发者ID:MattRix,项目名称:Madness,代码行数:17,代码来源:Futile.cs


注:本文中的FStage.HandleAddedToFutile方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。