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 mealone · Jun 16, 2014 at 04:32 AM · collisioninstantiatearrayswipe

conditional gameobject spawning from collision array help please?

hello, i am building a game where the user touches the screen and swipes using the finger to pop balloons, something similar to fruit ninja swipe/cut action. i am trying to figure out how to get a three/four swipe combo done when the player pops three/four balloons with one swipe. i have a swipe prefab instantiated and constrained to the finger position when the user touches the screen and moves the finger for the swipe, and a collision script which pops the balloons whenever the instantiated swipe prefab hits a balloon, which works great. i would like to do this however - when the user swipes, and the swipe prefab pops three balloons or more -> instantiate combo prefab from the position of the last balloon which was popped when the swipe prefab collided with it. this is the code attached to the balloons:

 var pop: GameObject;
 var burst : GameObject;
  
 function OnCollisionEnter2D(coll: Collision2D) {
     if (coll.gameObject.tag == "burst"){
         Instantiate(burst, transform.position, Quaternion.identity);
         Instantiate(pop, transform.position, Quaternion.identity);
         Destroy(gameObject);
         }
 }

i would really really appreciate if someone could help with this issue... i am not sure how to go about setting it up. thanks in advance!

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 robusto · Jun 16, 2014 at 04:54 AM

make a var comboCount : int and increment ++comboCount in the collision code. Right after check if comboCount > 2, if it is instantiate your combo prefab.

You need to also reset your comboCount = 0 when your combo stops. You need to decide what keeps a combo going, most games use a time frame in which you have to pop a ballon to keep it going so you need to have another var lastHitElapsedTime : float, and in the Update function, lastHitElapsedTime += Time.deltaTime. So adding this you need to also make a check to see if lastHitElapsedTime < 2 ( if 2 seconds is the window to keep a combo going) and reset it to 0 if you did pop a ballon within 2 seconds. That should get you going.

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

help with fruit ninja like slice combo 1 Answer

OnCollisionEnter not being called, between a Rigidbody and a Box Collider 1 Answer

Instantiate into array : Out of range? 1 Answer

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

Insantiate once only 2 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