Negin Soltani 37239732ac Initial Push
- Globe Asset
- Spatial Anchors
- Photon Implementation
- Scripts for Globe Control and Initial Country Colorizing
- Script for Reading csv file
2024-05-16 14:41:23 +02:00

21 lines
418 B
C#

using UnityEngine;
using System.Collections;
namespace WPM {
public class EditorAttribGroup {
public IExtendableAttribute itemGroup;
public string newTagKey;
public string newTagValue;
public bool foldOut;
public void SetItemGroup(IExtendableAttribute item) {
itemGroup = item;
newTagKey = "";
newTagValue = "";
}
}
}