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 22ecvvw · Feb 16, 2017 at 07:06 PM · randomspawnrandom.rangepickup

Random.value for each GameObject.

Hey, I've got a script for an enemy space ship, and near the bottom I have it to where when the PlayerProjectile hits the object it destroys and spawns a pickup. But I different types such as Health, shield etc... How would I add a Random.Value drop rate for each item such as 10% for health 30% for shield? Any help you guys can give is greatly appreciated

 using System.Collections;
 using System.Collections.Generic; 
 using UnityEngine;
 
 public class EnemyControllerBasic : MonoBehaviour
 {
 
 
     [SerializeField]
     float MoveSpeed = 5.0f;
 
     private ShipPlayerController PlayerShipCtrl;
 
     [SerializeField]
     GameObject[] PickupTypes;
 
     private GameObject BadPickup;
 
     private GameObject Pickup;
 
     private GameObject PickupShield;
 
     private GameObject PickupHealth;
 
     
 
    
 
     // Use this for initialization
     void Start()
     {
         Destroy(gameObject, 5.0f);
 
         GameObject playerShip = GameObject.Find("PlayerShip");
 
         PlayerShipCtrl = playerShip.GetComponent<ShipPlayerController>();
 
        
     }
 
     // Update is called once per frame
     void Update()
     {
 
         transform.position +=
             transform.up * Time.deltaTime * MoveSpeed;
 
     }
 
     void OnTriggerEnter(Collider other)
     {
         if (other.tag == "PlayerProjectile")
         {
             Destroy(gameObject);
 
             SpawnPickup();
         }
 
         else if (other.tag == "PlayerShip")
         {
             Destroy(gameObject);
 
             PlayerShipCtrl.ModScore(-3);
         }
 
     }
 
     void SpawnPickup()
     {
 
          int randIndex = Random.Range(0, PickupTypes.Length);
 
 
         if (Random.value > 0.5)
 
             Instantiate(PickupTypes[randIndex],
             transform.position, transform.rotation);
     }
 
     
 }

 
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
Best Answer

Answer by hexagonius · Feb 16, 2017 at 08:53 PM

Sounds like you want to match a percentage to an Item. So you might want to replace this:

 [SerializeField]
      GameObject[] PickupTypes;
  
      private GameObject BadPickup;
  
      private GameObject Pickup;
  
      private GameObject PickupShield;
  
      private GameObject PickupHealth;

with that:

 [System.Serializable]
 public struct PickupChance{
   public GameObject pickup;
   [Range(0,100)]public int chance;
 }
 
 [SerializeField] PickupChance[] PickupTypes;
 
 int totalChance;
 
 void Start(){
   foreach(var p in PickupTypes)
     totalChance += p.chance;
 }
 
 GameObject GetPickupForChance(int chance){
   int currentChance;
   for(int i = 0; i < PickupTypes.Length; i++){
     if (currentChance > chance){
       return PickupTypes[i - 1].pickup;
     currentChance +=PickupTypes[i].chance;
 }
 return PickupTypes[PickupTypes.Length - 1].pickup;
   }
 }

Then you can do:

 int randIndex = Random.Range(0, totalChance);

Since the chances are all just relative to each other, their sum makes for 100% no matter the values. I think that's easier than counter adjusting for a total of 100% all the time.

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 22ecvvw · Feb 16, 2017 at 10:54 PM 0
Share

Thank you! I had to do a few changes but this got me back on the right path I was off lol

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

96 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

Related Questions

Random Object Spawn 0 Answers

how to Spawn prefab infront off player and destroy it when hr passed it 0 Answers

Object spawn at spawn points 1 Answer

How to spawn a prefab every 5 second randomly between a set range? 0 Answers

How to generate a random color? 5 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