send all animations to self again...

This commit is contained in:
UbitUmarov
2022-04-20 01:37:25 +01:00
parent d919441fb2
commit c7253d8bf9
5 changed files with 72 additions and 106 deletions

View File

@@ -347,15 +347,15 @@ namespace OpenSim.Region.PhysicsModule.ubOde
}
[StructLayout(LayoutKind.Sequential)]
[StructLayout(LayoutKind.Sequential, Size = 16)]
internal struct Vector3
{
internal Vector3(dReal x, dReal y, dReal z)
{
X = x; Y = y; Z = z; _w = 0.0f;
X = x; Y = y; Z = z; //_w = 0.0f;
}
internal dReal X, Y, Z;
private dReal _w;
//private readonly dReal _w;
}