![Negin Soltani](/assets/img/avatar_default.png)
- Globe Asset - Spatial Anchors - Photon Implementation - Scripts for Globe Control and Initial Country Colorizing - Script for Reading csv file
21 lines
418 B
C#
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 = "";
|
|
}
|
|
|
|
}
|
|
|
|
}
|