Files
Fishing2/Assets/Obi/Scripts/Common/Backends/Interface/Constraints/IVolumeConstraintsBatchImpl.cs
2025-11-10 00:08:26 +08:00

17 lines
593 B
C#

using UnityEngine;
using System.Collections;
namespace Obi
{
public interface IVolumeConstraintsBatchImpl : IConstraintsBatchImpl
{
void SetVolumeConstraints(ObiNativeIntList triangles,
ObiNativeIntList firstTriangle,
ObiNativeIntList numTriangles,
ObiNativeFloatList restVolumes,
ObiNativeVector2List pressureStiffness,
ObiNativeFloatList lambdas,
int count);
}
}