FMOD_Studio_ParameterInstance_GetDescription() private method

private FMOD_Studio_ParameterInstance_GetDescription ( IntPtr parameter, PARAMETER_DESCRIPTION_INTERNAL &description ) : RESULT
parameter System.IntPtr
description PARAMETER_DESCRIPTION_INTERNAL
return RESULT
示例#1
0
        public RESULT getDescription(out PARAMETER_DESCRIPTION description)
        {
            description = default(PARAMETER_DESCRIPTION);
            PARAMETER_DESCRIPTION_INTERNAL pARAMETER_DESCRIPTION_INTERNAL;
            RESULT rESULT = ParameterInstance.FMOD_Studio_ParameterInstance_GetDescription(this.rawPtr, out pARAMETER_DESCRIPTION_INTERNAL);

            if (rESULT != RESULT.OK)
            {
                return(rESULT);
            }
            pARAMETER_DESCRIPTION_INTERNAL.assign(out description);
            return(rESULT);
        }