FMOD.Geometry.FMOD_Geometry_GetPolygonAttributes C# (CSharp) Method

FMOD_Geometry_GetPolygonAttributes() private method

private FMOD_Geometry_GetPolygonAttributes ( IntPtr geometry, int index, float &directocclusion, float &reverbocclusion, bool &doublesided ) : RESULT
geometry System.IntPtr
index int
directocclusion float
reverbocclusion float
doublesided bool
return RESULT
        private static extern RESULT FMOD_Geometry_GetPolygonAttributes (IntPtr geometry, int index, out float directocclusion, out float reverbocclusion, out bool doublesided);
        [DllImport(VERSION.dll)]

Usage Example

Example #1
0
 public RESULT getPolygonAttributes(int polygonIndex, ref float directOcclusion, ref float reverbOcclusion, ref bool doubleSided)
 {
     return(Geometry.FMOD_Geometry_GetPolygonAttributes(geometryraw, polygonIndex, ref directOcclusion, ref reverbOcclusion, ref doubleSided));
 }