15 lines
250 B
C#
15 lines
250 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Streamingle.Utils.RoughConstraints
|
|
{
|
|
[Serializable]
|
|
public struct RoughConstraintSource
|
|
{
|
|
public Transform sourceTransform;
|
|
|
|
[Range(0f, 1f)]
|
|
public float weight;
|
|
}
|
|
}
|