21 lines
535 B
C#
21 lines
535 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.Utilities
|
|
{
|
|
/// <summary>
|
|
/// Collection node is a data storage class for individual data about an object in a collection.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ObjectCollectionNode
|
|
{
|
|
public string Name;
|
|
public Vector2 Offset;
|
|
public float Radius;
|
|
public Transform Transform;
|
|
public Collider[] Colliders;
|
|
}
|
|
} |