Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by BDV · Apr 05, 2013 at 08:28 PM · objectmodelcircle

How to create a Circle around object ?

Hi guys , i have some scanner models in my scene and i need to create a circle that shows the distance from the scanner (attachment).... so i also need to have the option to scale the circle alt text any ideas ?? thanks

capture1.png (6.1 kB)
Comment
Add comment · Show 3
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image mhtraylor · Apr 05, 2013 at 08:39 PM 0
Share

Is the circle to be drawn in game, or is this something you want to use in the editor?

avatar image BDV · Apr 05, 2013 at 08:43 PM 0
Share

in game during runtime

avatar image Lockstep · Apr 05, 2013 at 09:49 PM 0
Share

Is the circle meant to be appear as a GUI element or should it exist in 3D space? If it's the later case, should it be painted on some other gameObjects or should it float on its own? Should it always face the player or act independantly of him?

One possible approach could be a plane with a transparent texture of the circle. You would simply need to scale the plane to change the circles size.

1 Reply

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by mhtraylor · Apr 05, 2013 at 09:53 PM

You could create another GameObject (such as a flattened Cube or some custom low-poly Plane) with a transparent material and circle texture, and parent it to your scanner object. Then you can access it in script and modify its local scale, position, etc. like so (this script spins the circle and scales it based on input):

 using UnityEngine;
 
 public class TestScript : MonoBehaviour
 {
     Transform circle;
     public float scaleSpeed, rotSpeed;
 
     void Awake()
     {
         circle = transform.Find("Circle");
     }
 
     void Update()
     {
 
         float dxz = Input.GetAxis("Vertical") * scaleSpeed * Time.deltaTime;
         circle.localScale += new Vector3(dxz, 0.0f, dxz);
         circle.Rotate(Vector3.up * rotSpeed * Time.deltaTime);
     }
 }

Here's what mine looks like: alt text


circlescreenshot.png (416.5 kB)
Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Fattie · Apr 06, 2013 at 06:38 AM 0
Share

There's a TERRIFIC asset on the asset store called "Dynamic Circles"

You should get it for sure - it's only a couple bucks and it's great

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

13 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

can you make a prefab but without a model? 3 Answers

Get all child objects within an object? 2 Answers

[Modeling] Splitting and Rejoining Objects -- Good or bad practice? 1 Answer

MMD How to export model and animations to Unity as 3rd person controller? 2 Answers

How to make a cone? 6 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges