示例#1
0
    public static void DespawnAllItems(string poolName)
    {
        PoolSystem P = GetPoolByName(poolName);

        if (P != null)
        {
            P.DespawnAllItems();
        }
    }