Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by no00ob · Aug 15, 2018 at 07:22 PM · physicstransformvector3proceduralspace

Why doesn't my asteroid field perfectly move with me?

So I have a script that creates a field of asteroids in the beginning of the game, then as they exit the certain area around the player they warp in front of the player and a new size is applied to them (more coming in the future), but there's one issue sometimes they just get left behind and don't warp, mostly happens when player is traveling with a very high speeds but does also sometimes happen with slow speeds as well. Script 1:

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class AsteroidManager : MonoBehaviour {
 
     [SerializeField]
     private GameObject[] asteroids;
     [SerializeField]
     private Transform locationWhereToBegin;
     public float radius;
     [SerializeField]
     private float numberOfAsteroids;
 
     void Start()
     {
         for (int i = 0; i < numberOfAsteroids; i++)
             Instantiate(asteroids[Random.Range(0, asteroids.Length)], locationWhereToBegin.position + Random.insideUnitSphere * radius, Random.rotation);
     }
 }

Script 2:

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class Asteroid : MonoBehaviour {
 
     AsteroidManager asteroidManager;
 
     [Header("Asteroid Stats")]
     public float maxSize;
     public float minSize;
 
     void Start()
     {
         asteroidManager = GameObject.FindGameObjectWithTag("Gamemaster").GetComponent<AsteroidManager>();
     }
 
     void OnTriggerExit()
     {
         float radius = asteroidManager.radius;
         float size = Random.Range(minSize, maxSize);
         Vector3 newSphereCenter = GameObject.FindGameObjectWithTag("Player").transform.position + GameObject.FindGameObjectWithTag("Player").transform.forward * radius;
         Vector3 nextPos;
         do
         {
             nextPos = newSphereCenter + Random.insideUnitSphere * radius;
         } while (Vector3.Distance(nextPos, GameObject.FindGameObjectWithTag("Player").transform.position) < radius);
         transform.localScale = new Vector3(size, size, size);
         transform.position = nextPos;
     }
 }


Comment
Add comment
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by no00ob · Aug 15, 2018 at 07:33 PM

Right now I'm using this as a temporary:

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class Asteroid : MonoBehaviour {
 
     AsteroidManager asteroidManager;
 
     [Header("Asteroid Stats")]
     public float maxSize;
     public float minSize;
     public GameObject object1;
     public GameObject object2;
     public float distance;
     public float speed = 1;
 
     void Start()
     {
         asteroidManager = GameObject.FindGameObjectWithTag("Gamemaster").GetComponent<AsteroidManager>();
         object1 = gameObject;
         object2 = GameObject.FindGameObjectWithTag("Player");
     }
 
     void FixedUpdate()
     {
         distance = Vector3.Distance(object1.transform.position, object2.transform.position);
     }
 
     void Update()
     {
         if (distance > 10000)
         {
             float radius = asteroidManager.radius;
             float size = Random.Range(minSize, maxSize);
             Vector3 newSphereCenter = GameObject.FindGameObjectWithTag("Player").transform.position + GameObject.FindGameObjectWithTag("Player").transform.forward * radius;
             Vector3 nextPos;
             do
             {
                 nextPos = newSphereCenter + Random.insideUnitSphere * radius;
             } while (Vector3.Distance(nextPos, GameObject.FindGameObjectWithTag("Player").transform.position) < radius);
             transform.localScale = new Vector3(size, size, size);
             transform.position = nextPos;
         }    
     }
 
     void OnTriggerExit()
     {
         float radius = asteroidManager.radius;
         float size = Random.Range(minSize, maxSize);
         Vector3 newSphereCenter = GameObject.FindGameObjectWithTag("Player").transform.position + GameObject.FindGameObjectWithTag("Player").transform.forward * radius;
         Vector3 nextPos;
         do
         {
             nextPos = newSphereCenter + Random.insideUnitSphere * radius;
         } while (Vector3.Distance(nextPos, GameObject.FindGameObjectWithTag("Player").transform.position) < radius);
         transform.localScale = new Vector3(size, size, size);
         transform.position = nextPos;
     }
 }

Comment
Add comment · 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

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

246 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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

Detecting Distance from Object at any polint 1 Answer

Terrain height -> loosing Players GO childs 0 Answers

Applying torque to smoothly stop at a desired rotation - factoring Mass and a Max torque 1 Answer

How to calculate forward/Up/Right without transform, have only vector3? 0 Answers

I got Some Error about how to Transform Postiton Enemy where one point can spawn 2 enemies. 1 Answer


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