| Latest Threads |
Water Tunneling Through M...
Forum: Obi Fluid
Last Post: josemendez
51 minutes ago
» Replies: 1
» Views: 18
|
ECS Physics/Graphics Supp...
Forum: General
Last Post: josemendez
3 hours ago
» Replies: 21
» Views: 1,740
|
Oculus and Softbodies
Forum: Obi Softbody
Last Post: josemendez
Yesterday, 01:01 PM
» Replies: 3
» Views: 90
|
Issues with closed loops
Forum: Obi Rope
Last Post: N_U_P
17-05-2026, 07:22 AM
» Replies: 8
» Views: 794
|
Editor Customizable Categ...
Forum: General
Last Post: Jawsarn
15-05-2026, 08:13 PM
» Replies: 3
» Views: 4,949
|
Extending Grappling Hook ...
Forum: Obi Rope
Last Post: docgonzzo
15-05-2026, 03:03 AM
» Replies: 5
» Views: 510
|
Triggers and raycasting S...
Forum: General
Last Post: Qriva0
08-05-2026, 04:20 PM
» Replies: 0
» Views: 112
|
How to make better rope e...
Forum: Obi Rope
Last Post: Mediafarm
05-05-2026, 09:59 AM
» Replies: 2
» Views: 383
|
Artifacts on simulated cl...
Forum: Obi Cloth
Last Post: CptnFabulous
04-05-2026, 09:51 AM
» Replies: 2
» Views: 363
|
ObiFluidRendererFeature c...
Forum: General
Last Post: josemendez
04-05-2026, 08:31 AM
» Replies: 2
» Views: 332
|
|
|
| A couple of Bugs fixes for Obi Rope |
|
Posted by: Parker - 22-09-2017, 04:24 AM - Forum: Obi Rope
- No Replies
|
 |
ObiRopeEditor.cs
Line 94: Replace ;; with ;
Oni.cs
Line 28, Add newline and the following
[Flags]
ObiBone.cs
Line 198, restPositions cannot be re-declared as it willl have a different meaning to the restPositions above.
Line 198: change restPositions to restPositions1
Line 201: change restPositions to restPositions1
|
|
|
| ovr (oculus) implementation |
|
Posted by: satchmo - 21-09-2017, 01:50 PM - Forum: Obi Fluid
- Replies (2)
|
 |
Hi guys, I bought fluid, great job!
I've seen some questions in th FAQ session about vr, I think it would be great a future implementation with a oculus touch sensor ready scene, do you think you'll do it?
So, If you do, I will not try by myself :-)
thx
CArlo
|
|
|
| Creating Rope in runtime |
|
Posted by: Parker - 21-09-2017, 03:40 AM - Forum: Obi Rope
- Replies (2)
|
 |
Unity is running. Meaning this is real time. The user will not be stopping the game and creating a rope, initializing it, and putting on handles, then re-start the game.
I want this to be done during runtime and with scripts. When I use the code, the rope DOES NOT work, it has no physics attached. How do you get it to work.
ObiRope Rope;
ObiSolver Solver;
ObiCatmullRomCurve Curve;
ObiRopeCursor Cursor;
private void Awake()
{
if (Rope == null)
Rope = gameObject.AddComponent<ObiRope>();
if (Curve == null)
{
Curve = gameObject.AddComponent<ObiCatmullRomCurve>();
Rope.ropePath = Curve;
}
if (Solver == null)
{
Solver = gameObject.AddComponent<ObiSolver>();
Rope.Solver = Solver;
}
// Configure rope and solver parameters:
Rope.SectionThicknessScale = 0.10f;
Rope.resolution = 1f;
Rope.BendingConstraints.stiffness = 0.2f;
Rope.UVScale = new Vector2(1, 5);
Rope.NormalizeV = false;
Rope.UVAnchor = 1;
Rope.RestLength = 10;
Solver.distanceConstraintParameters.iterations = 15;
Solver.pinConstraintParameters.iterations = 15;
Solver.bendingConstraintParameters.iterations = 1;
// Add a cursor to change rope length:
Cursor = Rope.gameObject.AddComponent<ObiRopeCursor>();
Cursor.rope = Rope;
Cursor.normalizedCoord = 0;
Cursor.direction = true;
}
public void InitRope()
{
Rope.UpdateVisualRepresentation();
}
private IEnumerator CreateRope()
{
yield return Rope.GeneratePhysicRepresentationForMesh();
}
public void UpdateRope()
{
StartCoroutine(CreateRope());
}
|
|
|
| Moving Rope in runtime |
|
Posted by: Parker - 21-09-2017, 03:32 AM - Forum: Obi Rope
- Replies (1)
|
 |
Unity is running. This will happen in real time, meaning the user will not stop the program and go to the particle editor, make changes, then run the game again.
I want to move a rope from left side of screen to right side without it fly over all over the place. I am looking for code to fix this problem.
|
|
|
| White foam |
|
Posted by: Kalidor - 19-09-2017, 03:25 PM - Forum: Obi Fluid
- Replies (6)
|
 |
Hello!
Is it possible to let the fluid looks like white foam (fire extinguisher)?
Thanks!
Kalidor
|
|
|
|