Thursday, July 4, 2019

Draw circle in Unity

https://gamedev.stackexchange.com/questions/126427/draw-circle-around-gameobject-to-indicate-radius

Solution 1

The Line Renderer takes an array of two or more points in 3D space and draws a straight line between each one. A single Line Renderer Component can thus be used to draw anything from a simple straight line, to a complex spiral. The line is always continuous; if you need to draw two or more completely separate lines, you should use multiple GameObjects, each with its own Line Renderer.


Great little script for Unity that makes a LineRenderer component shape into a circle or ellipse, given the number of line segments along with x and y radius.

Example1:

No comments:

Post a Comment