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 /
This question was closed Jun 21, 2019 at 01:26 AM by haoqi21 for the following reason:

Other

avatar image
0
Question by haoqi21 · Jun 21, 2019 at 01:00 AM · movementmovement script

How to get different objects with same script to act independently?

Currently, I have 2 objects that are supposed to act independently of each other. Both are just supposed to move around randomly, and stop and turn every so often. I am using the same script to control both objects, but this results in them always moving together in the same direction. I am using a private random to determine the direction of rotation, but it generates the same number in both scripts. How do I get them to turn independently, that is, have the two randoms generate different numbers?

 private Rigidbody selfRB;
 private Animator selfAnim;
 public playerStats player;

 private float timePassed = 0.0f;
 private float repeatTime = 4f;
 private System.Random rng = new System.Random();

 private int rotation;
 private bool moved = false;

 // Start is called before the first frame update
 void Start()
 {
     selfRB = GetComponent<Rigidbody>();
     selfAnim = GetComponent<Animator>();
     rotation = rng.Next(0, 360);
     print("RNG: " + rotation);
 }

 // Update is called once per frame
 void Update()
 {
     timePassed += Time.deltaTime; //ADDS TIME THAT HAS PASSED TO TOTAL TIME

     if (timePassed >= repeatTime) //RESETS TIME IF IT GOES OVER THE LIMIT
     {
         rotation = rng.Next(0, 360);
         timePassed = 0.0f;
     }

     print("OBJECT: " + gameObject.name);


     if (timePassed <= 2) //MOVING PERIOD
     {
         transform.eulerAngles = new Vector3(transform.eulerAngles.x, rotation + 0f, transform.rotation.z);
         selfRB.velocity = transform.forward * 7.5f;
         moved = true;
         selfAnim.SetBool("moving", true);
     }
     else if (moved) //WAIT PERIOD
     {
         selfRB.velocity = new Vector3(0, 0, 0);
         moved = false;
         selfAnim.SetBool("moving", false);
     }
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

2 Replies

  • Sort: 
avatar image
0

Answer by Freesmith · Jun 21, 2019 at 01:04 AM

hi, it is well decribed here link text


try this:

// add this to header instead of private System.Random rng = new System.Random();

private float rng;

// add this where you what to create random number

rng = Random.Range(0f, 360f);

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
avatar image
0

Answer by haoqi21 · Jun 21, 2019 at 01:08 AM

i know how random works, the problem is that random generates the same thing in both scripts @Freesmith

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 Freesmith · Jun 21, 2019 at 01:11 AM 0
Share

look here and youll likely see the difference in what you haveused and what i proposed

link text

Follow this Question

Answers Answers and Comments

163 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

Related Questions

Implementing Counter-Movement 0 Answers

Touch buttons for step movememt 3 Answers

Accelerometer 2 Answers

MouseLook character is acting wierd 1 Answer

HOW TO MAKE A NPC GO FORWAR 0 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