当前位置: 首页>>代码示例>>C#>>正文


C# EVRSettingsError类代码示例

本文整理汇总了C#中EVRSettingsError的典型用法代码示例。如果您正苦于以下问题:C# EVRSettingsError类的具体用法?C# EVRSettingsError怎么用?C# EVRSettingsError使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


EVRSettingsError类属于命名空间,在下文中一共展示了EVRSettingsError类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: RemoveSection

 public void RemoveSection(string pchSection, ref EVRSettingsError peError)
 {
     this.FnTable.RemoveSection(pchSection, ref peError);
 }
开发者ID:GameDiffs,项目名称:TheForest,代码行数:4,代码来源:CVRSettings.cs

示例2: GetFloat

	public abstract float GetFloat(string pchSection,string pchSettingsKey,float flDefaultValue,ref EVRSettingsError peError);
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:1,代码来源:openvr_api.cs

示例3: GetString

	public abstract void GetString(string pchSection,string pchSettingsKey,string pchValue,uint unValueLen,string pchDefaultValue,ref EVRSettingsError peError);
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:1,代码来源:openvr_api.cs

示例4: GetBool

	public abstract bool GetBool(string pchSection,string pchSettingsKey,bool bDefaultValue,ref EVRSettingsError peError);
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:1,代码来源:openvr_api.cs

示例5: GetInt32

	public abstract int GetInt32(string pchSection,string pchSettingsKey,int nDefaultValue,ref EVRSettingsError peError);
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:1,代码来源:openvr_api.cs

示例6: VR_IVRSettings_GetString

	internal static extern void VR_IVRSettings_GetString(IntPtr instancePtr, string pchSection, string pchSettingsKey, string pchValue, uint unValueLen, string pchDefaultValue, ref EVRSettingsError peError);
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:1,代码来源:openvr_api.cs

示例7: GetSettingsErrorNameFromEnum

	public abstract string GetSettingsErrorNameFromEnum(EVRSettingsError eError);
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:1,代码来源:openvr_api.cs

示例8: Sync

	public override void Sync(ref EVRSettingsError peError)
	{
		CheckIfUsable();
		VRNativeEntrypoints.VR_IVRSettings_Sync(m_pVRSettings,ref peError);
	}
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:5,代码来源:openvr_api.cs

示例9: SetString

 public void SetString(string pchSection, string pchSettingsKey, string pchValue, ref EVRSettingsError peError)
 {
     this.FnTable.SetString(pchSection, pchSettingsKey, pchValue, ref peError);
 }
开发者ID:GameDiffs,项目名称:TheForest,代码行数:4,代码来源:CVRSettings.cs

示例10: Sync

 public bool Sync(bool bForce, ref EVRSettingsError peError)
 {
     return this.FnTable.Sync(bForce, ref peError);
 }
开发者ID:GameDiffs,项目名称:TheForest,代码行数:4,代码来源:CVRSettings.cs

示例11: SetInt32

 public void SetInt32(string pchSection, string pchSettingsKey, int nValue, ref EVRSettingsError peError)
 {
     this.FnTable.SetInt32(pchSection, pchSettingsKey, nValue, ref peError);
 }
开发者ID:GameDiffs,项目名称:TheForest,代码行数:4,代码来源:CVRSettings.cs

示例12: SetFloat

 public void SetFloat(string pchSection, string pchSettingsKey, float flValue, ref EVRSettingsError peError)
 {
     this.FnTable.SetFloat(pchSection, pchSettingsKey, flValue, ref peError);
 }
开发者ID:GameDiffs,项目名称:TheForest,代码行数:4,代码来源:CVRSettings.cs

示例13: SetBool

 public void SetBool(string pchSection, string pchSettingsKey, bool bValue, ref EVRSettingsError peError)
 {
     this.FnTable.SetBool(pchSection, pchSettingsKey, bValue, ref peError);
 }
开发者ID:GameDiffs,项目名称:TheForest,代码行数:4,代码来源:CVRSettings.cs

示例14: VR_IVRSettings_GetInt32

	internal static extern int VR_IVRSettings_GetInt32(IntPtr instancePtr, string pchSection, string pchSettingsKey, int nDefaultValue, ref EVRSettingsError peError);
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:1,代码来源:openvr_api.cs

示例15: VR_IVRSettings_GetFloat

	internal static extern float VR_IVRSettings_GetFloat(IntPtr instancePtr, string pchSection, string pchSettingsKey, float flDefaultValue, ref EVRSettingsError peError);
开发者ID:Black4Blade,项目名称:NewtonVR,代码行数:1,代码来源:openvr_api.cs


注:本文中的EVRSettingsError类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。