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
示例#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));
 }