Files
2025-05-29 22:31:40 +03:00

39 lines
691 B
C#

using UnityEngine;
using System.Collections;
using System;
namespace Obi
{
public interface ITetherConstraintsUser
{
bool tetherConstraintsEnabled
{
get;
set;
}
float tetherCompliance
{
get;
set;
}
float tetherScale
{
get;
set;
}
}
[Serializable]
public class ObiTetherConstraintsData : ObiConstraints<ObiTetherConstraintsBatch>
{
public override ObiTetherConstraintsBatch CreateBatch(ObiTetherConstraintsBatch source = null)
{
return new ObiTetherConstraintsBatch();
}
}
}