Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
435 views

How do games make fire and smoke effects? [closed]

I searched the internet for information about particle systems and fire effects but I haven't found any good answers. Some games have some sort of movie shown as the fire, which is pretty good, but ...
4
votes
1answer
307 views

GLSL PointSprite for particle system

I'm using an ParticleSystem with PointSprites (inspired by the Cocos2D Source). But I wonder how to rebuild the functionality for OpenGL ES 2.0 glEnable(GL_POINT_SPRITE_OES); ...
4
votes
1answer
456 views

FPS lowering issue while using Cocos2D Particle Effects in CCTouchesMoved

This is the code I have been using in CCTouchesMoved for producing Particle Effects in the touching locations. But while using this FPS is dropping to 20 while touches is moving! I have tried lowering ...
3
votes
1answer
537 views

Are there any iOS Particle System Libraries

Does anyone know of any (opensource would be nice) Particle / Emitter libraries for iOS? I know of cocos iphone but couldn't find any others. If all else fails I'll get my hands dirty and learn ...
3
votes
1answer
746 views

Setting the texture of a particle using CCTextureCache

I am giving my first steps with cocos2d-iphone. I am using: CCSpriteFrameCache *frameCache = [CCSpriteFrameCache sharedSpriteFrameCache]; [frameCache addSpriteFramesWithFile:@"textures.plist"]; to ...
2
votes
0answers
54 views

Scaling of the point sprites (Direc3D 9)

Tell me please what values should ​​I set for D3DRS_POINTSCALE_A, D3DRS_POINTSCALE_B, D3DRS_POINTSCALE_С to point sprites scaled just like other objects in the scene. The parameters A = 0 B = 0 and C ...
1
vote
1answer
182 views

Particle System: XNA Framework HiDef profile does not support alpha blending on Vector4 textures

I found this great tutorial on making a particle system in XNA: http://www.catalinzima.com/tutorials/4-uses-of-vtf/particle-systems/ The problem is that its written for an older version of xna and ...
1
vote
0answers
100 views

Modelling Fluid-Solid Interaction using SPH

I am a newbie here, so I apologize if my question seems weird. This is about my SPH simulator, which not be able to handle fluid-solid interaction yet. My simulator can simulate fluid well, but I got ...
1
vote
2answers
424 views

2D Particle System - Performance

I have implemented a 2D Particle System based on the ideas and concepts outlined in "Bulding an Advanced Particle System" (John van der Burg, Game Developer Magazine, March 2000). Now I am wondering ...
1
vote
1answer
190 views

How to create a sparks effect using CAReplicatorLayer with some randomness?

Is it possible to create a convincing sparks effect using a CAReplicatorLayer particle system with some randomness? If so, how?
1
vote
1answer
105 views

Graphics Intensive Application in Java

I'm making a particle engine in Java, and right now I'm using a subclass of java.awt.canvas. I'm using canvas.getBufferStrategy().getDrawGraphics() and then, when I'm done, using ...
1
vote
1answer
143 views

Real-time alterations to XML to change the particle effect

I am currently writing a Particle System using XNA. What I'd like to do is use an external file (XML for example) and be able to modify this file, whilst the application is running, and once saved, ...
0
votes
1answer
93 views

Andengine Particle Collision Effect (Android Game Dev)

I am interested in developing a particle engine which I can call something like .createCollisionEffect(pos x, pos y, float duration); And the engine will create a random-directional spur of particles ...
0
votes
0answers
67 views

How know which particles of a particlesystem are in the frustum

I'm using Three.js and webGLrender to display a hockey stadium with its seats (80k particles) and i want to be able to do picking on each seat. I've tried to create a hidden object to use ray ...
0
votes
1answer
76 views

What options for decent particle effects engines do I have for iOS?

The core question is "what are my options for decent particle effects in an iOS app?" I wrote an iPad app where I wanted to use a large amount of UIKit objects in the UI and just keep to a native ...
0
votes
1answer
315 views

CAEmitterLayer (ios5) vs CCParticleSystem (cocos2d) Performance

I am to create an app with lots and lots of particle effects and I was planning to use cocos2d framework. But just recently, I came to know that particle systems can be created in ios5. I like to ...
0
votes
1answer
131 views

OpenGL sample particle simulation doesnt show up particles

I have created a simple particle simulation for a fountain from this source. I also wanted to implement this using C++ classes. So, tried to put the above part of the logic into classes at this source ...
0
votes
1answer
170 views

How to pause/resume CCParticleSystem in Cocos2D-iPhone?

I am currently making a game in Cocos2D, and I need to pause/resume some particle systems in order to optimize. How can I do this? I am aware that I can use [particleSystem unscheduleUpdate] and ...
0
votes
0answers
64 views

Android Particle System Push away from point (in a circle)

not sure why I'm having issues w/ this formula.. at first I wanted my explode double tap feature to push particles away from the point of origin at varying amounts based on their distance to the touch ...
0
votes
2answers
404 views

How do I draw 1000+ particles (w/ unique rotation, scale, and alpha) in iPhone OpenGL ES particle system without slowing down the game?

I am developing a game for iPhone using OpenGL ES 1.1. In this game, I have blood particles which emit from characters when they are shot, so there can be 1000+ blood particles on the screen at any ...
0
votes
1answer
78 views

Adjust particle file (.plist) in real time

I have a cocos2 project I'm working on and I'm wondering if there is a way to adjust a variable in my particle system .plist file in real time. i.e. adjust the x gravity to correlate with the speed of ...
0
votes
0answers
201 views

how to create smoke particle graphics effect in android?

I am creating android application in that i have to implement effects like smoke,glittering and sunrays. when i googled, i got source as for glittering like fireworks and small particles appear and ...
0
votes
0answers
89 views

Creating darker CCParticleGalaxies, how can I make it darker?

I create my emitter like this: CCParticleSystem *emitter; emitter = [[CCParticleGalaxy alloc] init]; emitter.texture = [[CCTextureCache sharedTextureCache] addImage:@"texture.png"]; ...
0
votes
0answers
95 views

Manipulating Particle Emitters with Data from an Array

I have been stuck for a huge amount of time on this problem so seeking some advice. I am recording sound via the iPhone's microphone and storing peak data that I have captured in an array. I have ...
0
votes
1answer
171 views

Particle effects in a uiview

I'd like to write/use particle effects in a uiview so I'm thinking of writing a simple one using quartz. It'd be strictly 2d. Am I shooting myself in the foot by not using gl, or are there othet ...
0
votes
1answer
331 views

Simulating fire with SPH particles

I want to simulate fire using SPH particles. I understand the concept behind SPH but don't understand yet how to model the fire as a fluid. Do I have to add some temperature property to my particles ...
0
votes
1answer
139 views

Mushroom Cloud Using Cocos2d

I would like to display an animated mushroom cloud (probably with particle emitters) as the result of an explosion in an iPad game I am developing. I was wondering if there was anyone out there that ...