FMOD.Geometry.FMOD_Geometry_GetMaxPolygons C# (CSharp) Method

FMOD_Geometry_GetMaxPolygons() private method

private FMOD_Geometry_GetMaxPolygons ( IntPtr geometry, int &maxpolygons, int &maxvertices ) : RESULT
geometry System.IntPtr
maxpolygons int
maxvertices int
return RESULT
        private static extern RESULT FMOD_Geometry_GetMaxPolygons       (IntPtr geometry, out int maxpolygons, out int maxvertices);
        [DllImport(VERSION.dll)]

Usage Example

Example #1
0
 public RESULT getMaxPolygons(ref int maxPolygons, ref int maxVertices)
 {
     return(Geometry.FMOD_Geometry_GetMaxPolygons(geometryraw, ref maxPolygons, ref maxVertices));
 }