• 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 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 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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

129 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

Related Questions

How to turn object into a particle system and back? 0 Answers

Particle trigger module script 0 Answers

Disable camera rendering outside of trigger 0 Answers

How will a particle system behave if it has a random start size and a linearly decreasing curve for size over lifetime? 1 Answer

how to give particle bursts their own colliders 0 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges