重新导入obi
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
using UnityEngine;
|
||||
using System.Collections;
|
||||
using System;
|
||||
|
||||
namespace Obi
|
||||
{
|
||||
|
||||
public interface IVolumeConstraintsUser
|
||||
{
|
||||
bool volumeConstraintsEnabled
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
float compressionCompliance
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
float pressure
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ObiVolumeConstraintsData : ObiConstraints<ObiVolumeConstraintsBatch>
|
||||
{
|
||||
public override ObiVolumeConstraintsBatch CreateBatch(ObiVolumeConstraintsBatch source = null)
|
||||
{
|
||||
return new ObiVolumeConstraintsBatch();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user