Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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
5
Question by Richard 13 · Apr 02, 2011 at 12:14 AM · particlesmeshesemit

Emit meshes instead of particle spritres?

Can the current version of Unity emit meshes like in Unreal? Or am I just limited to sprites?

Thanks.

Comment
Add comment · Show 6
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 DaveA · Apr 02, 2011 at 12:15 AM 1
Share

$$anonymous$$an, would that be sweet

avatar image e-bonneville · Apr 02, 2011 at 12:39 AM 0
Share

Not would -- is. :P

avatar image DaveA · Apr 02, 2011 at 12:48 AM 0
Share

Unreal lets your particles be more than just billboards, they can be entire meshes. Which is pretty handy for some things as long as you don't over-do it... You can make a hail storm with 'real hail'. Or a pinata full of candy, etc.

avatar image DaveA · Apr 02, 2011 at 12:49 AM 0
Share

I'm assu$$anonymous$$g that's what Richard meant anyway. It would mean each type of Particle Emitter would have a $$anonymous$$esh variable you could set.

avatar image e-bonneville · Apr 02, 2011 at 01:02 AM 0
Share

Yeah... I thought for one hopeful second that the mesh particle emitter was that.

Show more comments

9 Replies

· Add your reply
  • Sort: 
avatar image
9

Answer by RavenOfCode · Dec 24, 2016 at 03:51 PM

I'm surprised this hasn't been answered properly. But since this is the first thing that comes up on a quick google search here is my answer:

Yes, its possible and quite easy.

Basically you need to change the RenderMode on the renderer to Mesh, and then add the mesh. alt text

Here is a video on how to do it: https://www.youtube.com/watch?v=pCmlu4ag70g


particlesystemmeshes.png (24.1 kB)
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 TiTaTomte · Dec 05, 2017 at 08:29 PM 0
Share

This should be the accepted answer! Thanks!

avatar image
1

Answer by DaveA · Apr 02, 2011 at 12:51 AM

No, I don't think so. It would mean a new type of Particle Renderer I think, or some variable called Mesh (or MeshFilter or MeshRender???) on an Emitter.

That said, no reason you couldn't code one up. Other people have coded PE's for Unity (esp before they got as good as they are, there is always room for improvement).

Comment
Add comment · Show 2 · 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 DaveA · Apr 02, 2011 at 12:56 AM 0
Share

You could go to feedback.unity3d.com and vote for this. It's probably already listed there somewhere.

avatar image Richard 13 · Apr 02, 2011 at 01:06 AM 0
Share

Thanks for the response, will definitely do that for the feedback.

avatar image
1

Answer by Eric5h5 · Apr 02, 2011 at 12:55 AM

Not without writing your own particle system that emits meshes. You could still leverage the Unity particle system by reading the particle positions using that, so you'd just have to concentrate on the rendering part, and not reinvent the wheel (or at least not all of it). In other words, use a standard particle system and turn off the renderer, and just use the particle position data. However you'd have to do something about the rotation of each mesh particle, which might be tricky.

Comment
Add comment · Show 2 · 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 DaveA · Apr 02, 2011 at 12:58 AM 0
Share

It would be wonderful if you could emit prefabs. Then each 'particle' could have its own 'intelligence'. Caveat scriptor.

avatar image Richard 13 · Apr 02, 2011 at 01:10 AM 0
Share

I see what your saying Eric5h5, I'll have my friend look into that. @DaveA: wow that's really past what I had initially though, but emitting prefabs would be great!

avatar image
0

Answer by e-bonneville · Apr 02, 2011 at 12:35 AM

Yes. Add a Mesh Particle Emitter from the Component/Particles menu.

Comment
Add comment · Show 5 · 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 DaveA · Apr 02, 2011 at 12:47 AM 0
Share

Really? I thought a $$anonymous$$PE was what E$$anonymous$$IT particles (from its surface and/or vertices), not what gets E$$anonymous$$ITTED FRO$$anonymous$$ another emitter.

avatar image e-bonneville · Apr 02, 2011 at 12:53 AM 1
Share

Really? Oops, I'll have to take another look at it. Sorry for the false alarm, guys. :-)

avatar image Richard 13 · Apr 02, 2011 at 12:53 AM 0
Share

Hey Elliot, I am familiar with the $$anonymous$$esh Particle Emitter Component. However I am talking about getting Unity to do something like this: http://www.vimeo.com/18340811

avatar image e-bonneville · Apr 02, 2011 at 01:02 AM 0
Share

Yes, I'd confused myself as to the meaning of $$anonymous$$esh Particle Emitter. I'd understood what you meant. :)

avatar image Richard 13 · Apr 02, 2011 at 01:11 AM 0
Share

Yeah no problem, I thought that was how the component functioned at first.

avatar image
0

Answer by martin_e89 · Jan 13, 2014 at 06:48 PM

You can do it with mesh particle systems. Take a look at this article http://docs.unity3d.com/Documentation/Components/class-MeshParticleEmitter.html

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
  • 1
  • 2
  • ›

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

8 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Particle systems: Defining the vertices of an EDGE-type emitter 2 Answers

Is there a way to determine what mesh(es) are used by the particle system when multiple meshes are assigned? 0 Answers

Particle Thrust 1 Answer

Particles do not appear on play but do on emit 0 Answers

'Swap' a particle from one system to another, keeping it's position 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