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 ehmarkhandker · Mar 23, 2020 at 02:14 AM · particle systemmouse clickstupid

How to do a Burst Particle effect on Mouse Click?

So i'm this lower than basic 14 year old programmer (or at least trying to become one) trying to make this whack a mole game. I want to do a burst effect when I click on the mole. But YouTube seems to suck, and I haven't found anything else here either. So, I need help.

This is the code that i thought would work:

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class Burst_PE : MonoBehaviour
 {
     public GameObject burstEffect;
 
     private void OnCollisionEnter2D(Collision2D col)
     {
         if (gameObject.CompareTag("Mole"))
         {
             if (Input.GetMouseButtonDown(0))
             {
                 Instantiate(burstEffect, transform.position, transform.rotation);
             }
         }
     }
 }
 

HALP

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

· Add your reply
  • Sort: 
avatar image
0

Answer by IcaroSh · Jan 14, 2021 at 06:01 AM

@ehmarkhandker . Umm, I'm not an expert or anything. But I think you are not really checking if the object you are colliding with is the object with the tag "Mole" also I think you are trying to check for collision and input within the same frame while I think you should always check for input in the Update method or in your case unity's OnMouse functions.

Most importantly I don't really get whether your intention is to instantiate the particle effect when your object collides with something or when you click on the object.

If your intention is to click on the object and instantiate the particle effect unity has a function called:

 void OnMouseUp()
 {
  //Instantiate your particle effect.
  //I would also recommend to use a timer here to make sure your object doesn't spam the particle effect.
  // This function gets called when the user releases the left mouse button
 // the input is read only when clicking over the object the script is attached to
 }

If in the other hand your intention is to instantiate the particle effect when your object collides with the "Mole", the code would be like this:

 void OnCollisionEnter2D(Collsion2D collision)
     {
         if (collison.gameObject.CompareTag("Mole"))
         {
             //Instantiate your particle effect
             // I would also recommend to use a timer here to make sure your object doesn't spam the particle effect
             // something like it can only instantiate if the Time.time > timer
         }
     }

Hope it helps.

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 Llama_w_2Ls · Jan 14, 2021 at 11:06 AM

Don't worry. It doesn't take long to 'get good' at anything if you put the time and effort in.


Amyways, I believe what you want is a raycast. Raycast are essentially 'rays' that are fired from a position to another, and collect info, such as what it hit along the way, the distance travelled etc. This can be useful to detect where you clicked on the screen.


For example, you can fire a raycast from your camera to your mouse click position, convert that into real world space, and get the mole you clicked on:

 void Update()
 {
     WhackMole();
 }
 
 void WhackMole()
 {
     if (Input.GetMouseButtonDown(0))
     {
         // Create a ray from the camera to your click position
         Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
 
         // If the ray hit an object along the way...
         if (Physics.Raycast(ray, out RaycastHit hit))
         {
                // If I hit a mole
                if (hit.collider.gameObject.CompareTag("Mole"))
                {
                     Instantiate(Effect, hit.point, Quaternion.identity);
                }
          }
     }
 }

@ehmarkhandker

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

130 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

Related Questions

Particles in Particle System rendering as white square in iOS build 1 Answer

How to adjust alpha color of particle system main module during runtime (shuriken)? 1 Answer

Change color of particles by distance from emitter 2 Answers

Particles/Standard unlit behaving differently in different scenes 0 Answers

Particle parent for another particle system 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