⚪
Tank & Healer Studio Assets
Return to Website
Ultimate Radial Menu
Ultimate Radial Menu
  • 🔵INTRODUCTION
    • 👋Welcome!
    • ⚡Getting Started
    • 📺Video Tutorials
  • 📖Documentation
    • UltimateRadialMenu
      • Public Methods
        • RegisterButton (+3 overloads)
        • Enable
        • Disable
        • DisableImmediate
        • CreateEmptyButton
        • ClearMenu
        • RemoveButton
        • ClearButtonInformation
        • SetPosition
        • ResetPosition
        • SetParent
        • UpdatePositioning
      • Static Methods
        • ReturnComponent
        • RegisterButton (+3 overloads)
        • Enable
        • Disable
        • DisableImmediate
        • CreateEmptyButton
        • ClearMenu
        • RemoveButton
        • ClearButtonInformation
        • SetPosition
        • ResetPosition
        • SetParent
      • Events
        • OnButtonEnter
        • OnMenuDisabled
      • Public Classes
        • UltimateRadialButton
      • Properties
    • UltimateRadialButtonInfo
      • Public Methods
        • UpdateIcon
        • UpdateText
        • UpdateDescription
        • SelectButton
        • DeselectButton
        • ToggleSelect
        • EnableButton
        • DisableButton
        • RemoveFromMenu
        • RemoveInfoFromButton
        • GetButtonIndex
      • Leave us a review!
    • UltimateRadialMenuInputManager
      • Public Methods
        • SendRaycastInput
  • 💡Tips & Tricks
    • Creating a Custom Input Manager
    • Sub Menu Add-on
  • 🤝Helpful Links
    • Support Discord
    • Other Products
Powered by GitBook
On this page

Was this helpful?

  1. Documentation
  2. UltimateRadialMenu
  3. Public Methods

SetParent

Sets the parent of the canvas to the new parent transform. Useful for VR applications and World Space canvases.

using UnityEngine;

public class RadialMenuExample : MonoBehaviour
{
	// BE SURE TO ASSIGN THIS IN THE INSPECTOR //
	public UltimateRadialMenu radialMenu;
	public Transform rightHandTransform;

	void Update ()
	{
		// If the space bar has been pressed...
		if( Input.GetKeyDown( KeyCode.Space ) )
		{
			// Set the parent of the radial menu to the right hand transform assigned in the inspector.
			radialMenu.SetParent( rightHandTransform, Vector3.zero, Quaternion.identity );
		}
	}
}

PreviousResetPositionNextUpdatePositioning

Last updated 1 year ago

Was this helpful?

📖