enum

SteamVR::UnregisterResult

Inherits Enum < Comparable < Value < Object

登録解除の結果。

自動起動の無効化とマニフェストの登録解除は別々の操作で、片方だけ通ることがある。 成否の 2 値にまとめると、呼び出し側は「自動起動を無効にできた」事実を設定へ残せない。

Constants

Succeeded = 0

両方できた。

AutoLaunchOnly = 1

自動起動は無効にできたが、マニフェストの登録解除に失敗した。

Failed = 2

自動起動を無効にできなかった。

Instance methods

auto_launch_only?

Returns true if this enum value equals AutoLaunchOnly

Source
failed?

Returns true if this enum value equals Failed

Source
succeeded?

Returns true if this enum value equals Succeeded

Source