Latest Threads |
Collisions do not happens...
Forum: Obi Rope
Last Post: quent_1982
Yesterday, 02:12 PM
» Replies: 0
» Views: 35
|
Unstable chain attachment
Forum: Obi Rope
Last Post: quent_1982
Yesterday, 10:31 AM
» Replies: 13
» Views: 488
|
Memory leak warning with ...
Forum: Obi Fluid
Last Post: josemendez
16-05-2025, 02:07 PM
» Replies: 4
» Views: 423
|
the Obi cloth has some co...
Forum: Obi Cloth
Last Post: MakeLifeEasier
16-05-2025, 08:59 AM
» Replies: 3
» Views: 225
|
ObiCloth going through co...
Forum: Obi Cloth
Last Post: josemendez
16-05-2025, 08:10 AM
» Replies: 1
» Views: 81
|
Why does setting InverseM...
Forum: Obi Fluid
Last Post: nonnamed
13-05-2025, 12:41 PM
» Replies: 8
» Views: 11,816
|
Shaking problem when coll...
Forum: Obi Softbody
Last Post: webmagic
13-05-2025, 12:11 PM
» Replies: 6
» Views: 310
|
Obi Softbody IndexOutOfRa...
Forum: Obi Softbody
Last Post: Aroosh
11-05-2025, 11:37 AM
» Replies: 2
» Views: 226
|
Rope pinned to two dynami...
Forum: Obi Rope
Last Post: Crimson1462
09-05-2025, 07:51 PM
» Replies: 2
» Views: 301
|
Unity 6 Console Spam abou...
Forum: Obi Fluid
Last Post: josemendez
09-05-2025, 08:03 AM
» Replies: 3
» Views: 1,229
|
|
|
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
|
|
|
|