﻿//----------------------------------------------------------------------------------
// GVRNavi | Garpix Virtual Reality Navigation
// Copyright (c) 2017 Garpix Ltd.
//
// Plugin Homepage: https://gvrnavi.garpix.com
// Author Homepage: https://garpix.com
// Support: support@garpix.com
// License: Asset Store Terms of Service and EULA
// License URI: See LICENSE file in the project root for full license information.
//----------------------------------------------------------------------------------

using System;

namespace GVRNavi
{
    [Serializable]
    public enum VRSpriteType { Image = 0, SpriteRenderer }

    [Serializable]
    public enum VRButtonState { Normal = 0, Hovered }

    [Serializable]
    public enum VRToggleState { Normal = 0, HoveredUnchecked, HoveredChecked, Checked }

    [Serializable]
    public enum VRReticlePointerType { Press = 0, Gaze }
}