約 548,000 件の結果
リンクを新しいタブで開く
  1. How to change text by script in Unity - Stack Overflow

    2021年5月6日 · Here in Unity, you have a component-oriented design. Text and Button are just Components of GameObject entities. Most parts of your game scripts are also Components …

  2. Unity, rotating a Vector3 along an axis - Stack Overflow

    2022年12月22日 · For example, I have a Vector3 and I waant to rotate it relatively Y-axis (Vector3.up). Can I do it using built-in methods, or should I use coordinate geometry and …

  3. I can't activate the license in unity hub - Stack Overflow

    2019年11月17日 · reinstall Unity Hub, not it can see the license, login is also done by itself. Update: To make thing simpler, use a pre-UnityHub version of editor (for me it's Unity …

  4. How to pass data (and references) between scenes in Unity

    Unity will always destroy its Object even if they are declared with the static keyword. See #2 for a workaround. 2.Use the DontDestroyOnLoad function. You only need to use this if the data to …

  5. what is the difference between Update & FixedUpdate in Unity?

    2015年12月24日 · FixedUpdate is used for being in-step with the physics engine, so anything that needs to be applied to a rigidbody should happen in FixedUpdate. Update, on the other hand, …

  6. In Unity, how can I pass values from one script to another?

    2012年12月15日 · 31 In Unity, I want one object to have a falling speed variable that all the other objects can access. For various reasons, I can't use the inbuilt gravity for what I'm trying to do. …

  7. Changing color of of gameObject in Unity - Stack Overflow

    2015年7月23日 · Changing color of of gameObject in Unity Asked 10 years, 5 months ago Modified 9 years, 7 months ago Viewed 39k times

  8. c# - Unity - IEnumerator's yield return null - Stack Overflow

    2017年1月18日 · I'm currently trying to understand IEnumerator & Coroutine within the context of Unity and am not too confident on what the "yield return null" performs. At the …

  9. Unity - GetComponentsInChildren<T> () return order - Stack Overflow

    2017年2月21日 · Unity documentation for GetComponentsInChildren does not guarantee a specific return order -- thus even if you find a deterministic order in the current version it's liable …

  10. c# - Scale GameObject in Unity - Stack Overflow

    2016年8月31日 · How can I increase / decrease the size of objects in Unity? Example: public GameObject sprite; public float scale = 2.0f; void ScaleResolution() { sprite = sprite*scale; //epic …