コード例 #1
0
    public void LoadView()
    {
        mBox = new SampleAppUIBox(SampleAppUIConstants.BoxRect, SampleAppUIConstants.MainBackground);

        mVideoPlaybackLabel = new SampleAppUILabel(SampleAppUIConstants.RectLabelOne, SampleAppUIConstants.VideoPlaybackLabelStyle);

        string[] aboutStyles = { SampleAppUIConstants.AboutLableStyle, SampleAppUIConstants.AboutLableStyle };
        mAboutLabel = new SampleAppUICheckButton(SampleAppUIConstants.RectLabelAbout, false, aboutStyles);

        string[] extendedTrackingStyles = { SampleAppUIConstants.ExtendedTrackingStyleOff, SampleAppUIConstants.ExtendedTrackingStyleOn };
        mExtendedTracking = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionOne, false, extendedTrackingStyles);

        string[] cameraFlashStyles = { SampleAppUIConstants.CameraFlashStyleOff, SampleAppUIConstants.CameraFlashStyleOn };
        mCameraFlashSettings = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionThree, false, cameraFlashStyles);

        string[] autofocusStyles = { SampleAppUIConstants.AutoFocusStyleOff, SampleAppUIConstants.AutoFocusStyleOn };
        mAutoFocusSetting = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionTwo, false, autofocusStyles);

        string[] playFullScreenStyles = { SampleAppUIConstants.PlayFullscreenModeOff, SampleAppUIConstants.PlayFullscreenModeOn };
        mPlayFullscreeSettings = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionSixteen, false, playFullScreenStyles);

        mCameraLabel = new SampleAppUILabel(SampleAppUIConstants.RectLabelSix, SampleAppUIConstants.CameraLabelStyle);

        string[,] cameraFacingStyles = new string[2, 2] { { SampleAppUIConstants.CameraFacingFrontStyleOff, SampleAppUIConstants.CameraFacingFrontStyleOn }, { SampleAppUIConstants.CameraFacingRearStyleOff, SampleAppUIConstants.CameraFacingRearStyleOn } };
        SampleAppUIRect[] cameraRect = { SampleAppUIConstants.RectOptionsSvnteen, SampleAppUIConstants.RectOptionsEighteen };
        mCameraFacing = new SampleAppUIRadioButton(cameraRect, 1, cameraFacingStyles);

        string[] closeButtonStyles = { SampleAppUIConstants.closeButtonStyleOff, SampleAppUIConstants.closeButtonStyleOn };
        mCloseButton = new SampleAppUIButton(SampleAppUIConstants.CloseButtonRect, closeButtonStyles);
    }
    public void LoadView()
    {
        mBox = new SampleAppUIBox(SampleAppUIConstants.BoxRect, SampleAppUIConstants.MainBackground);

        mVideoPlaybackLabel = new SampleAppUILabel(SampleAppUIConstants.RectLabelOne, SampleAppUIConstants.VideoPlaybackLabelStyle);

        string[] aboutStyles = { SampleAppUIConstants.AboutLableStyle, SampleAppUIConstants.AboutLableStyle };
        mAboutLabel = new SampleAppUICheckButton(SampleAppUIConstants.RectLabelAbout, false, aboutStyles);

        string[] extendedTrackingStyles = { SampleAppUIConstants.ExtendedTrackingStyleOff, SampleAppUIConstants.ExtendedTrackingStyleOn };
        mExtendedTracking = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionOne, false, extendedTrackingStyles);

        string[] cameraFlashStyles = { SampleAppUIConstants.CameraFlashStyleOff, SampleAppUIConstants.CameraFlashStyleOn };
        mCameraFlashSettings = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionThree, false, cameraFlashStyles);

        string[] autofocusStyles = { SampleAppUIConstants.AutoFocusStyleOff, SampleAppUIConstants.AutoFocusStyleOn };
        mAutoFocusSetting = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionTwo, false, autofocusStyles);

        string[] playFullScreenStyles = { SampleAppUIConstants.PlayFullscreenModeOff, SampleAppUIConstants.PlayFullscreenModeOn };
        mPlayFullscreeSettings = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionSixteen, false, playFullScreenStyles);

        mCameraLabel = new SampleAppUILabel(SampleAppUIConstants.RectLabelSix, SampleAppUIConstants.CameraLabelStyle);

        string[,] cameraFacingStyles = new string[2, 2] {
            { SampleAppUIConstants.CameraFacingFrontStyleOff, SampleAppUIConstants.CameraFacingFrontStyleOn }, { SampleAppUIConstants.CameraFacingRearStyleOff, SampleAppUIConstants.CameraFacingRearStyleOn }
        };
        SampleAppUIRect[] cameraRect = { SampleAppUIConstants.RectOptionsSvnteen, SampleAppUIConstants.RectOptionsEighteen };
        mCameraFacing = new SampleAppUIRadioButton(cameraRect, 1, cameraFacingStyles);

        string[] closeButtonStyles = { SampleAppUIConstants.closeButtonStyleOff, SampleAppUIConstants.closeButtonStyleOn };
        mCloseButton = new SampleAppUIButton(SampleAppUIConstants.CloseButtonRect, closeButtonStyles);
    }
コード例 #3
0
    public SampleAppUIButton AddButton(string title, Rect rect)
    {
        SampleAppUIButton button = new SampleAppUIButton(rect, mStyleCloseButton, title);

        GUIElements.Add(button);
        mIndex += button.Height;
        return(button);
    }
コード例 #4
0
    public SampleAppUIButton AddButton(Texture buttonTexture, Rect rect)
    {
        SampleAppUIButton button = new SampleAppUIButton(rect, mStyleCloseButton, buttonTexture);

        GUIElements.Add(button);
        mIndex += button.Height;
        return(button);
    }
コード例 #5
0
    public void LoadView()
    {
        mLayout = new SampleAppsUILayout();
        mTextRecognitionLabel = mLayout.AddLabel("Text Reco");
        mAboutLabel = mLayout.AddSimpleButton("About");

        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);
        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #6
0
    public void LoadView()
    {
        mLayout = new SampleAppsUILayout();
        mTextRecognitionLabel = mLayout.AddLabel("Text Reco");
        mAboutLabel           = mLayout.AddSimpleButton("About");

        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #7
0
    public void LoadView()
    {

        mLayout = new SampleAppsUILayout();
        mFrameMarkerLabel = mLayout.AddLabel("Frame Markers");
        mAboutLabel = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);
        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);
        mCloseButton = mLayout.AddButton("Close", CloseButtonRect); 
    }
コード例 #8
0
ファイル: UDTUIView.cs プロジェクト: vanstorm9/ARtest
 public void LoadView()
 {
     mLayout = new SampleAppsUILayout();
     mHeaderLabel = mLayout.AddLabel("User Defined Targets");
     mAboutLabel = mLayout.AddSimpleButton("About");
     mLayout.AddGap(2);
     mExtendedTracking = mLayout.AddSlider("Extended Tracking", false);
     Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);
     mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
 }
コード例 #9
0
 public void UnLoadView()
 {
     mAboutLabel          = null;
     mSmartTerrainLabel   = null;
     mCameraFlashSettings = null;
     mAutoFocusSetting    = null;
     mScanningLabel       = null;
     mStartStopScanning   = null;
     mReset       = null;
     mCloseButton = null;
 }
コード例 #10
0
    public void LoadView()
    {
        mLayout = new SampleAppsUILayout();
        mBackgroundTextureLabel = mLayout.AddLabel("Background Texture");
        mAboutLabel             = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);

        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #11
0
    public void LoadView()
    {
        mLayout      = new SampleAppsUILayout();
        mHeaderLabel = mLayout.AddLabel("User Defined Targets");
        mAboutLabel  = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);
        mExtendedTracking = mLayout.AddSlider("Extended Tracking", false);
        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #12
0
    public void LoadView()
    {
        mLayout             = new SampleAppsUILayout();
        mVideoPlaybackLabel = mLayout.AddLabel("Video Playback");
        mAboutLabel         = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);
        mPlayFullscreeSettings = mLayout.AddSlider("Play Fullscreen", false);
        mLayout.AddGap(16);
        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #13
0
    /// <summary>
    /// Registers this component as a handler for UserDefinedTargetBuildingBehaviour events
    /// </summary>
    public void Init()
    {
        mTargetBuildingBehaviour = GetComponent<UserDefinedTargetBuildingBehaviour>();
        if (mTargetBuildingBehaviour)
        {
            mTargetBuildingBehaviour.RegisterEventHandler(this);
            Debug.Log ("Registering to the events of IUserDefinedTargetEventHandler");
        }

        mNewUserDefinedTargetButton = MakeUIButton();
        mNewUserDefinedTargetButton.TappedOn += OnTappedOnNewTargetButton;
    }
コード例 #14
0
    /// <summary>
    /// Registers this component as a handler for UserDefinedTargetBuildingBehaviour events
    /// </summary>
    public void Init()
    {
        mTargetBuildingBehaviour = GetComponent <UserDefinedTargetBuildingBehaviour>();
        if (mTargetBuildingBehaviour)
        {
            mTargetBuildingBehaviour.RegisterEventHandler(this);
            Debug.Log("Registering to the events of IUserDefinedTargetEventHandler");
        }

        mNewUserDefinedTargetButton           = MakeUIButton();
        mNewUserDefinedTargetButton.TappedOn += OnTappedOnNewTargetButton;
    }
コード例 #15
0
    public void LoadView()
    {

        mLayout = new SampleAppsUILayout();
        mVideoPlaybackLabel = mLayout.AddLabel("Video Playback");
        mAboutLabel = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);
        mPlayFullscreeSettings = mLayout.AddSlider("Play Fullscreen", false);
        mLayout.AddGap(16);
        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);
        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #16
0
    public void LoadView()
    {
        mLayout = new SampleAppsUILayout();
        mTextRecognitionLabel = mLayout.AddLabel("Text Reco");
        mAboutLabel           = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);
        mCameraFlashSettings = mLayout.AddSlider("Flash", false);

        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #17
0
    public void LoadView()
    {
        mLayout = new SampleAppsUILayout();
        mBackgroundTextureLabel = mLayout.AddLabel("Background Texture");
        mAboutLabel             = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);
        mAutoFocusSetting = mLayout.AddSlider("Autofocus", true);
        mLayout.AddGap(2);
        mCameraFlashSettings = mLayout.AddSlider("Flash", false);

        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #18
0
 public void LoadView()
 {
     mLayout = new SampleAppsUILayout();
     mFrameMarkerLabel = mLayout.AddLabel("Frame Markers");
     mAboutLabel = mLayout.AddSimpleButton("About");
     mLayout.AddGap(2);
     mAutoFocusSetting = mLayout.AddSlider("Autofocus", false);
     mLayout.AddGap(2);
     mCameraFlashSettings = mLayout.AddSlider("Flash", false);
     mLayout.AddGap(16);
     mCameraLabel = mLayout.AddGroupLabel("Camera");
     string[] options = { "Front", "Rear" };
     mCameraFacing = mLayout.AddToggleOptions(options, 1);
     Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);
     mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
 }
コード例 #19
0
 public void LoadView()
 {
     mLayout = new SampleAppsUILayout();
     mHeaderLabel = mLayout.AddLabel("Virtual Buttons");
     mAboutButton = mLayout.AddSimpleButton("About");
     mLayout.AddGap(14);
     mButtonLabel = mLayout.AddGroupLabel("Button");
     mVirtualYellowButton = mLayout.AddSlider_Type2("Yellow", true);
     mLayout.AddGap(2);
     mVirtualRedButton = mLayout.AddSlider_Type2("Red", true);
     mLayout.AddGap(2);
     mVirtualGreenButton = mLayout.AddSlider_Type2("Green", true);
     mLayout.AddGap(2);
     mVirtualBlueButton = mLayout.AddSlider_Type2("Blue", true);
     Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);
     mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
 }
コード例 #20
0
 public void LoadView()
 {
     mLayout = new SampleAppsUILayout();
     mHeaderLabel = mLayout.AddLabel("Virtual Buttons");
     mAboutButton = mLayout.AddSimpleButton("About");
     mLayout.AddGap(14);
     mButtonLabel = mLayout.AddGroupLabel("Button");
     mButtonFour = mLayout.AddSlider_Type2("button4", true);
     mLayout.AddGap(2);
     mButtonThree = mLayout.AddSlider_Type2("button3", true);
     mLayout.AddGap(2);
     mButtonTwo = mLayout.AddSlider_Type2("button2", true);
     mLayout.AddGap(2);
     mButtonOne = mLayout.AddSlider_Type2("button1", true);
     Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);
     mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
 }
コード例 #21
0
    public void LoadView()
    {
        mLayout      = new SampleAppsUILayout();
        mHeaderLabel = mLayout.AddLabel("Virtual Buttons");
        mAboutButton = mLayout.AddSimpleButton("About");
        mLayout.AddGap(14);
        mButtonLabel = mLayout.AddGroupLabel("Button");
        mButtonFour  = mLayout.AddSlider_Type2("button4", true);
        mLayout.AddGap(2);
        mButtonThree = mLayout.AddSlider_Type2("button3", true);
        mLayout.AddGap(2);
        mButtonTwo = mLayout.AddSlider_Type2("button2", true);
        mLayout.AddGap(2);
        mButtonOne = mLayout.AddSlider_Type2("button1", true);
        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #22
0
    public void LoadView()
    {
        mLayout      = new SampleAppsUILayout();
        mHeaderLabel = mLayout.AddLabel("Virtual Buttons");
        mAboutButton = mLayout.AddSimpleButton("About");
        mLayout.AddGap(14);
        mButtonLabel         = mLayout.AddGroupLabel("Button");
        mVirtualYellowButton = mLayout.AddSlider_Type2("Yellow", true);
        mLayout.AddGap(2);
        mVirtualRedButton = mLayout.AddSlider_Type2("Red", true);
        mLayout.AddGap(2);
        mVirtualGreenButton = mLayout.AddSlider_Type2("Green", true);
        mLayout.AddGap(2);
        mVirtualBlueButton = mLayout.AddSlider_Type2("Blue", true);
        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #23
0
    public void LoadView()
    {
        mLayout         = new SampleAppsUILayout();
        mCloudRecoLabel = mLayout.AddLabel("Cloud Reco");
        mAboutLabel     = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);
        mExtendedTracking = mLayout.AddSlider("Extended Tracking", false);
        mLayout.AddGap(2);
        mAutoFocusSetting = mLayout.AddSlider("Autofocus", false);
        mLayout.AddGap(2);
        mCameraFlashSettings = mLayout.AddSlider("Flash", false);
        mLayout.AddGap(16);
        mCameraLabel = mLayout.AddGroupLabel("Camera");
        string[] options = { "Front", "Rear" };
        mCameraFacing = mLayout.AddToggleOptions(options, 1);
        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #24
0
    public void LoadView()
    {
        mLayout            = new SampleAppsUILayout();
        mSmartTerrainLabel = mLayout.AddLabel("Smart Terrain");
        mAboutLabel        = mLayout.AddSimpleButton("About");
        mLayout.AddGap(2);
        mCameraFlashSettings = mLayout.AddSlider("Flash", false);
        mLayout.AddGap(2);
        mAutoFocusSetting = mLayout.AddSlider("Autofocus", true);
        mLayout.AddGap(16);
        mScanningLabel     = mLayout.AddGroupLabel("Scanning");
        mStartStopScanning = mLayout.AddSimpleButton("Stop");
        mLayout.AddGap(2);
        mReset = mLayout.AddSimpleButton("Reset");

        Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);

        mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
    }
コード例 #25
0
 public void LoadView()
 {
     mLayout = new SampleAppsUILayout();
     mImageTargetLabel = mLayout.AddLabel("Image Targets");
     mAboutLabel = mLayout.AddSimpleButton("About");
     mLayout.AddGap(2);
     mExtendedTracking = mLayout.AddSlider("Extended Tracking", false);
     mLayout.AddGap(2);
     mAutoFocusSetting = mLayout.AddSlider("Autofocus", false);
     mLayout.AddGap(2);
     mCameraFlashSettings = mLayout.AddSlider("Flash", false);
     mLayout.AddGap(16);
     mCameraLabel = mLayout.AddGroupLabel("Camera");
     string[] options = { "Front", "Rear" };
     mCameraFacing = mLayout.AddToggleOptions(options, 1);
     mLayout.AddGap(14);
     mDataSetLabel = mLayout.AddGroupLabel("Database");
     string[] dataSetOptions = { "Stones & Chips", "Tarmac" };
     mDataSet = mLayout.AddToggleOptions(dataSetOptions, 0);
     Rect CloseButtonRect = new Rect(0, Screen.height - (100 * Screen.width) / 800.0f, Screen.width, (70.0f * Screen.width) / 800.0f);
     mCloseButton = mLayout.AddButton("Close", CloseButtonRect);
 }
コード例 #26
0
    public void LoadView()
    {
        mBox = new SampleAppUIBox(SampleAppUIConstants.BoxRect, SampleAppUIConstants.MainBackground);

        mImageTargetLabel = new SampleAppUILabel(SampleAppUIConstants.RectLabelOne, SampleAppUIConstants.ImageTargetLabelStyle);

        string[] aboutStyles = { SampleAppUIConstants.AboutLableStyle, SampleAppUIConstants.AboutLableStyle };
        mAboutLabel = new SampleAppUICheckButton(SampleAppUIConstants.RectLabelAbout, false, aboutStyles);

        string[] offTargetTrackingStyles = { SampleAppUIConstants.ExtendedTrackingStyleOff, SampleAppUIConstants.ExtendedTrackingStyleOn };
        mExtendedTracking = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionOne, false, offTargetTrackingStyles);

        string[] cameraFlashStyles = { SampleAppUIConstants.CameraFlashStyleOff, SampleAppUIConstants.CameraFlashStyleOn };
        mCameraFlashSettings = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionThree, false, cameraFlashStyles);

        string[] autofocusStyles = { SampleAppUIConstants.AutoFocusStyleOff, SampleAppUIConstants.AutoFocusStyleOn };
        mAutoFocusSetting = new SampleAppUICheckButton(SampleAppUIConstants.RectOptionTwo, false, autofocusStyles);

        mCameraLabel = new SampleAppUILabel(SampleAppUIConstants.RectLabelTwo, SampleAppUIConstants.CameraLabelStyle);

        string[,] cameraFacingStyles = new string[2, 2] {
            { SampleAppUIConstants.CameraFacingFrontStyleOff, SampleAppUIConstants.CameraFacingFrontStyleOn }, { SampleAppUIConstants.CameraFacingRearStyleOff, SampleAppUIConstants.CameraFacingRearStyleOn }
        };
        SampleAppUIRect[] cameraRect = { SampleAppUIConstants.RectOptionFour, SampleAppUIConstants.RectOptionFive };
        mCameraFacing = new SampleAppUIRadioButton(cameraRect, 1, cameraFacingStyles);

        string[,] datasetStyles = new string[2, 2] {
            { SampleAppUIConstants.StonesAndChipsStyleOff, SampleAppUIConstants.StonesAndChipsStyleOn }, { SampleAppUIConstants.TarmacOff, SampleAppUIConstants.TarmacOn }
        };
        SampleAppUIRect[] datasetRect = { SampleAppUIConstants.RectOptionSix, SampleAppUIConstants.RectOptionSeven };
        mDataSet = new SampleAppUIRadioButton(datasetRect, 0, datasetStyles);

        mDataSetLabel = new SampleAppUILabel(SampleAppUIConstants.RectLabelThree, SampleAppUIConstants.DatasetLabelStyle);

        string[] closeButtonStyles = { SampleAppUIConstants.closeButtonStyleOff, SampleAppUIConstants.closeButtonStyleOn };
        mCloseButton = new SampleAppUIButton(SampleAppUIConstants.CloseButtonRect, closeButtonStyles);
    }
コード例 #27
0
 public void OnTappedOnNewTargetButton()
 {
     BuildNewTarget();
     DrawON = false;
     mNewUserDefinedTargetButton = null;
 }
コード例 #28
0
	public SampleAppUIButton AddButton(string title, Rect rect)
	{
		SampleAppUIButton button = new SampleAppUIButton(rect, mStyleCloseButton, title);
		GUIElements.Add (button);
		mIndex += button.Height;
		return button;
	}
コード例 #29
0
	public SampleAppUIButton AddButton(Texture buttonTexture, Rect rect)
	{
		SampleAppUIButton button = new SampleAppUIButton(rect, mStyleCloseButton, buttonTexture);
		GUIElements.Add (button);
		mIndex += button.Height;
		return button;
	}