About 16,500,000 results
Open links in new tab
  1. how to resize box collider? - Unity Discussions

    Dec 16, 2011 · here’s the code: bordes _= Instantiate(borde, vectores*, Quaternion.identity);*_ The box collider follows the cube size - there’s no need to change its collider size, unless you …

  2. Scripting API: BoxCollider.size - Unity

    Use this to return or set the size of the BoxCollider component of a GameObject. Unity measures the size in the GameObject's local space. Changing the BoxCollider size scales it by the …

  3. Changing the size of a box collider at runtime: - Unity Engine - Unity

    Sep 11, 2013 · I think you need to use GetComponent from the gameObject to get the instance of the box collider and then change the size. collider = …

  4. How do I change the box collider 2D size in a c# script?

    Jun 15, 2015 · I fallowed the 2D Character Controllers tutorial video and my player is able to move back and forth and also jumps. I also have it set where when I press “z” he ducks. I was …

  5. How to Resize Box Collider in Unity with the Objects - YouTube

    Aug 21, 2022 · Box Collider resizes when object resizes download: https://www.gamesmobile.one/2022/08/b......

  6. c# - Unity UI TextBox Dynamic Height. How do I make it expand …

    Sep 3, 2017 · You can change the text box's Vertical Overflow settings to Overflow. It automatically increases the textboxes height based on text content.

  7. Unity3d resize panel with mouse from bottom right corner

    Jan 4, 2018 · You'd need to create an unclamped, zero size scroll rect, with no scroll bars that contains your "handle" (the bit you click and drag on). Then based on the handle's position, …

  8. How do I resize a TextMeshpro box/canvas? : r/Unity2D - Reddit

    Nov 15, 2020 · Change the font size and any width heights in the nested objects. Also instead of using "Scale" (cmd-R on macos), which stretches the text, you may be looking for "Transform" …

  9. Unity - Scripting API: BoxCollider.size

    Use this to return or set the size of the BoxCollider component of a GameObject. Unity measures the size in the GameObject's local space. Changing the BoxCollider size scales it by the …

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

    Aug 31, 2016 · 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; …