示例#1
0
    private GameObject InnerLoadBlock(PPBlockInfo nodeInfo, Transform parent, BlockLoadInfo blockLoadInfo)
    {
        if (mIsStop)
        {
            return(null);
        }
        string prefabName = nodeInfo.Prefab;

        PPTextureInfo[] textures = nodeInfo.Textures;

        GameObject gameObj;

        GameObject[] texObjs = new GameObject[textures.Length];

#if BLOCK_EDITOR
        gameObj = PEBlockLoader.CreateBlock(prefabName, (PolygonType)mPolygonType);
        for (int tIndex = 0; tIndex < textures.Length; tIndex++)
        {
            texObjs[tIndex] = PEBlockLoader.CreateTexture(textures[tIndex].Prefab);
        }
#else
        //Hide block 还是要创建出来,可能以后搭建中会用到该block的信息,它是作为搭建辅助件用的
        var prefabInfo = GetPrefabInfoByName(prefabName);
        gameObj = nodeInfo.Hide ? new GameObject() : PPLoader.CreateBlock(prefabInfo, () => blockLoadInfo.AllocateBlock());
        for (var tIndex = 0; tIndex < textures.Length; tIndex++)
        {
            texObjs[tIndex] = PPLoader.CreateTexture(prefabInfo.GetPrefabTexInfo(textures[tIndex].Prefab), () => blockLoadInfo.AllocateTexture());
        }
#endif

        gameObj.name = prefabName;
        gameObj.transform.SetParent(parent, false);
        PBBlock pbblock = gameObj.AddComponent <PBBlock>();
        pbblock.animNodeInfo = nodeInfo;
        pbblock.Init();

        //for texture
        for (int tIndex = 0; tIndex < texObjs.Length; tIndex++)
        {
            GameObject texObj = texObjs[tIndex];
            texObj.name = textures[tIndex].Prefab;
            texObj.transform.SetParent(gameObj.transform, false);
            PBTexture pbTex = texObj.AddComponent <PBTexture>();
            pbTex.info = textures[tIndex];
            pbTex.Init();
        }

        //for splines
        PBVersatileInterface.OnLoadBlockObj(gameObj, nodeInfo.VersatileInfo, true);

        if (mAnimNodes != null)
        {
            mAnimNodes.Add(nodeInfo.Id, gameObj);
        }
        return(gameObj);
    }
    private static string GetThumbName(PBBlock block)
    {
        string thumbName = GetStampThumbName(block);

        if (!string.IsNullOrEmpty(thumbName))
        {
            return(thumbName);
        }

        return(null);
    }
    /// <summary>
    /// 获取带有丝印的缩略图
    /// </summary>
    private static string GetStampThumbName(PBBlock block)
    {
        string[] texNames = block.GetTextureNames();
        if (texNames.Length == 0)
        {
            return(null);
        }
        var stampName = block.type;

        foreach (var texName in texNames)
        {
            stampName += "-" + texName;
        }
        return(stampName);
    }