AIEditor.EditorData.LoadShapeCollection C# (CSharp) Метод

LoadShapeCollection() публичный статический Метод

public static LoadShapeCollection ( string fileName ) : void
fileName string
Результат void
        public static void LoadShapeCollection(string fileName)
        {
            bool replace = true;

            if (replace)
            {
                mShapeCollection.RemoveFromManagers();
                mShapeCollection.Clear();

                mShapeCollection =
                    FlatRedBallServices.Load<ShapeCollection>(fileName, ContentManagerName);
                mShapeCollection.AddToManagers();

				LastLoadedFile = fileName;
            }
        }