Latest Threads |
can you remove particles ...
Forum: Obi Softbody
Last Post: aardworm
09-07-2025, 07:09 AM
» Replies: 0
» Views: 49
|
ObiRope Mesh Renderer
Forum: Obi Rope
Last Post: quent_1982
08-07-2025, 11:27 AM
» Replies: 4
» Views: 214
|
How to dynamically change...
Forum: Obi Rope
Last Post: quent_1982
08-07-2025, 06:34 AM
» Replies: 6
» Views: 374
|
Pipeline that bends
Forum: Obi Softbody
Last Post: josemendez
04-07-2025, 09:52 AM
» Replies: 13
» Views: 1,095
|
How to implement/sync Obi...
Forum: Obi Rope
Last Post: quent_1982
01-07-2025, 01:48 PM
» Replies: 2
» Views: 274
|
Collisions don't work con...
Forum: Obi Rope
Last Post: chenji
27-06-2025, 03:05 AM
» Replies: 3
» Views: 368
|
Force Zone apply differen...
Forum: Obi Rope
Last Post: chenji
26-06-2025, 11:41 AM
» Replies: 11
» Views: 1,021
|
Can I blend in and out of...
Forum: Obi Cloth
Last Post: josemendez
24-06-2025, 04:42 PM
» Replies: 3
» Views: 333
|
Using a rigidbody/collide...
Forum: Obi Cloth
Last Post: josemendez
24-06-2025, 09:29 AM
» Replies: 1
» Views: 200
|
Solver is too performance...
Forum: Obi Rope
Last Post: quent_1982
20-06-2025, 08:09 AM
» Replies: 40
» Views: 5,041
|
|
|
ropes are not colliding properly |
Posted by: PlayLikePro - 11-11-2018, 05:41 PM - Forum: Obi Rope
- Replies (1)
|
 |
[attachment=200]
[attachment=201]
As you can see, the top frame keep going upward to bring up the rope, the two ropes had collision at first but failed to keep holding on to each other.
Is there a way to improve this?
Thanks in advance,
Po
|
|
|
Questions before i buy |
Posted by: Smerik - 09-11-2018, 10:51 AM - Forum: Obi Fluid
- Replies (2)
|
 |
Hi,
I would like to ask a couple of questions before I make my purchase:
- Is it possible to make a clay-like fluid?
- Can I dynamically transition between water fluid and clay fluid?
- Does this work in a WebGL Export and how is the performance?
Thanks for answering!
Best,
Erik
|
|
|
Fluid Emission |
Posted by: FlairBot - 07-11-2018, 03:12 AM - Forum: Obi Fluid
- Replies (3)
|
 |
Hi!
I've recently bought Obi Fluid and it's great!
I'm trying to scale the fluid down a bit and the emission becomes rather obvious when this happens. It seems to pulse regular amounts of particles in a constant flow. e.g. 7 particles, wait a frame or 2, 7 more particles, etc.
I was wondering if there was a way to stagger the emission of particles so that new particles are spawned more regularly and not in spurts. I'm currently using the sphere shaped emitter, ideally I'd like particles to spawn randomly throughout the surface of the sphere at a constant rate, rather than having the surface pulse with particles.
Thanks!
FlairBot
|
|
|
Performance |
Posted by: ddematheu - 06-11-2018, 08:49 AM - Forum: Obi Fluid
- Replies (2)
|
 |
Hello,
what are the general recommendations of number of particles that can be in the scene at a given time without performance problems?
I am emitting around 1000 particles at a 0.5 rate with a lifespan of 100 and seeing performance issues. Is that expected? Any ways to optimize?
Thanks
ddematheu
|
|
|
Performance |
Posted by: ddematheu - 06-11-2018, 08:11 AM - Forum: Obi Fluid
- No Replies
|
 |
Hello,
what are the general recommendations of number of particles that can be in the scene at a given time without performance problems?
I am emitting around 1000 particles at a 0.5 rate with a lifespan of 100 and seeing performance issues. Is that expected? Any ways to optimize?
Thanks
ddematheu
|
|
|
Move fluid based on device orientation - ObiSphericalForceZone? |
Posted by: p3gamer - 01-11-2018, 03:46 PM - Forum: Obi Fluid
- Replies (5)
|
 |
I am trying to move fluid around when I tilt/rotate the device. I tried adjusting the gravity in the solver (ie. change y value from -9.81f to 9.81f when device is upsideDown), but that didn't seem to work. I am looking into ObiExternalForce, in particular (ObiSphericalForceZone), but I am not sure how to implement this after I added the component to the emitter.
|
|
|
Generating emitters on scene programatically |
Posted by: ddematheu - 29-10-2018, 08:02 AM - Forum: Obi Fluid
- Replies (1)
|
 |
Hello,
I have been playing around with ObiFluids for a game I am making. I am having some trouble being able to programatically create emitters actors on the scene. I followed the procedure found here: (http://obi.virtualmethodstudio.com/tutor...ctors.html)
Using the procedure in that link I am running a co-routine inside my Update function to create an emitter at certain points in time (checking for previous co-routine to finish before starting next)
The only additional step I added to the procedure in the link is:
Array.Resize<ObiParticleRenderer>(ref Camera.main.GetComponent<ObiFluidRenderer>().particleRenderers, Camera.main.GetComponent<ObiFluidRenderer>().particleRenderers.Length+1);
Camera.main.GetComponent<ObiFluidRenderer>().particleRenderers[Camera.main.GetComponent<ObiFluidRenderer>().particleRenderers.Length-1] = emitterCreated.GetComponent<ObiParticleRenderer>();
to add the particle renderer to the camera.
The emitter is created on the scene yet no fluid are emitted.
I get the following error:
NullReferenceException: Object reference not set to an instance of an object
Obi.ObiActor.PushDataToSolver (Obi.ParticleData data) (at Assets/Obi/Scripts/Actors/ObiActor.cs:385)
Obi.ObiActor.AddToSolver (System.Object info) (at Assets/Obi/Scripts/Actors/ObiActor.cs:278)
Obi.ObiEmitter.AddToSolver (System.Object info) (at Assets/Obi/Scripts/Actors/ObiEmitter.cs:125)
Obi.ObiActor.Start () (at Assets/Obi/Scripts/Actors/ObiActor.cs:150)
I am reusing the same solver for all the emitters created.
I can post full code but it is basically the one from the link.
Any help is appreciated.
|
|
|
|