EVERYTHING
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Photon.VR.Testing
|
||||
{
|
||||
public class PhotonVRCosmeticsChanger : MonoBehaviour
|
||||
{
|
||||
[Serializable]
|
||||
public class PhotonVRCosmeticTest
|
||||
{
|
||||
public string SlotName;
|
||||
|
||||
public string Cosmetic;
|
||||
}
|
||||
|
||||
public List<PhotonVRCosmeticTest> Cosmetics = new List<PhotonVRCosmeticTest>();
|
||||
|
||||
public void ChangeCosmetics(Dictionary<string, string> Cosmetics)
|
||||
{
|
||||
PhotonVRManager.SetCosmetics(Cosmetics);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user