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 /
avatar image
0
Question by Jtrobinson · Jan 18, 2019 at 10:16 PM · instantiatetransformscripting beginnerpositioning

How to grab, store and reference an objects position on trigger?

The player runs into the coin, the collider is on triggerenter2d. I'm trying to make it so that when the player triggers the coin a coinparticlesystem is instantiated on the coins current position.

The problem is how do I find, store then reference an object's position if it's moving? Here is what I have so far:

  public void OnTriggerEnter2D(Collider2D other)
     {
         if (other.tag == "Star")
         {
 
             Instantiate(CoinParticleSystem, myCoinPositionLoggingScript.Coin.transform.position, Quaternion.identity);
             myscoreCoinParticleEffect.ScoreCoinEFfect();
             myGameController.Incrementscore();
             myAudioPlayer.PlayOneShot(scoreSFX);
             Destroy(other.gameObject);
 
         }
 
     }
Comment
Add comment · Show 1
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 Jtrobinson · Jan 19, 2019 at 04:51 PM 0
Share

Yep exactly right I have a particle system prefab called CoinParticleSystem. I dragged it into the inspector and it played. Play on awake is set to true. But it just won't play when the player runs into the coin here's what I implemented.

 public void OnTriggerEnter2D(Collider2D other)
     {
         if (other.tag == "Star")
         {
             myscoreCoinParticleEffect.ScoreCoinEFfect();
             myGameController.Incrementscore();
             myAudioPlayer.PlayOneShot(scoreSFX);
             Instantiate(CoinParticleSystem, other.transform);
             Destroy(other.gameObject);
 
         }
 
     }

I just don't understand why it won't play it seems like everything is correct for it to do so when it's called in the code.

1 Reply

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

Answer by xxmariofer · Jan 18, 2019 at 10:51 PM

you can access coin position by other.transform.position since other is the coin coillider. Just use Instantiate(CoinParticleSystem, other.transform);

Comment
Add comment · Show 6 · 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 Jtrobinson · Jan 18, 2019 at 11:38 PM 0
Share

Yes, so I was asking how to store a game object position because I'm trying to instantiate the particle system on the coin when the coin is "collected" (collides with player). I tried what you posted above just now (Instantiate(CoinParticleSystem, other.transform); it did get rid of some errors I was having but it still won't play the particle system. Should I try the other method you described, storing the position then references the position to tell the particle system where to instantiate?

avatar image xxmariofer Jtrobinson · Jan 18, 2019 at 11:41 PM 0
Share

You are instantiating an object, that object once you drop it in the scene it starts emitting particles? cause thats how you spawn an object but you are not initiating the particle system (unless it starts playing in awake)

avatar image Jtrobinson xxmariofer · Jan 19, 2019 at 12:23 AM 0
Share

Ok, I see what you mean. It's not playing because the particle system just enters the scene but isn't commanded to play. The particle system itself is a "burst" meaning that it visually is just an explosion of particles that stops emitting after around half a second. But if I set it to play on awake will it just explode as soon as the game starts or only when it instantiated in the on trigger enter function?

Show more comments

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

147 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

Related Questions

Bullet firing but prefab looking in the wrong direction 1 Answer

Fixing instantiated object in one direction? 0 Answers

Instantiate Problem 2 Answers

I'm having trouble understanding what "does not contain a definition for" means. 3 Answers

The variable othertransform of Prefab has not been assigned 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