| Latest Threads |
Managing dynamic constrai...
Forum: General
Last Post: Qriva0
Yesterday, 10:40 AM
» Replies: 0
» Views: 29
|
Setting velocity to 0
Forum: Obi Cloth
Last Post: Qriva0
22-12-2025, 11:26 AM
» Replies: 7
» Views: 566
|
Non-uniform particle dist...
Forum: Obi Rope
Last Post: josemendez
22-12-2025, 09:23 AM
» Replies: 10
» Views: 2,859
|
Cloth backside collision ...
Forum: Obi Cloth
Last Post: Qriva0
19-12-2025, 10:07 AM
» Replies: 7
» Views: 519
|
Following Seas - Made wit...
Forum: Made with Obi
Last Post: josemendez
19-12-2025, 09:56 AM
» Replies: 1
» Views: 120
|
Obi 8: what's coming up
Forum: Announcements
Last Post: josemendez
12-12-2025, 08:41 AM
» Replies: 8
» Views: 1,299
|
Correct way to update mes...
Forum: Obi Fluid
Last Post: Voxelboy
10-12-2025, 12:48 AM
» Replies: 2
» Views: 420
|
How to make crane wire be...
Forum: Obi Rope
Last Post: chenji
09-12-2025, 10:47 AM
» Replies: 4
» Views: 567
|
How to let Rod not strech...
Forum: Obi Rope
Last Post: chenji
08-12-2025, 03:15 AM
» Replies: 3
» Views: 476
|
Animating rod rest positi...
Forum: Obi Rope
Last Post: Kira0tori
03-12-2025, 10:10 AM
» Replies: 43
» Views: 66,337
|
|
|
| add vector to obi cloth |
|
Posted by: Richard - 05-03-2019, 03:50 PM - Forum: Obi Cloth
- Replies (5)
|
 |
Hello.
I try to add vector to obi cloth. I have a error:Cannot implicitly convert type 'UnityEngine.Vector3' to 'float', but the direction of coding is not problem?
using UnityEngine;
using System.Collections;
using Obi;
[RequireComponent(typeof(ObiActor))]
public class DistanceAnchor : MonoBehaviour
{
ObiActor actor;
public ObiSolver solver;
void Awake()
{
actor = GetComponent<ObiActor>();
}
void Update()
{
ObiSolver solver = actor.Solver;
float invMassPerParticle = 0.01f;
for (int i = 0; i < actor.invMasses.Length; ++i)
{
int indexInSolver = actor.particleIndices[i];
actor.invMasses[i] = solver.invMasses[indexInSolver];
actor.invMasses[i] = new Vector3(0.0f, 0.05f, 0.0f);
}
}
}
|
|
|
| Sticky Materials |
|
Posted by: Kostik3000 - 05-03-2019, 03:34 PM - Forum: Obi Softbody
- Replies (3)
|
 |
Hi there,
yesterday I purchased your Softbody unitypackage. I am trying to stick two objects together (like in your example on the website with the cloth).
I created a sticky material and applied it to two spheres, which have soft bodies on them. But the don't stick to each other.
The obi solver has Collision and Particle Collision checked true. I also tried adding collideres to the spheres, but that changes nothing.
Am I missing something? Any help will be appreciated.
|
|
|
| Performance on mobile. |
|
Posted by: hecali_aj - 05-03-2019, 01:49 PM - Forum: Obi Softbody
- Replies (1)
|
 |
Hello!
I'm very interested in buying the product. As of now I only own Obi Cloth. How is the performance on mobile devices?
Can multiple simple (cube or sphere) softbody objects run smoothly?
|
|
|
| Moving multiple cloth actors not working |
|
Posted by: JJarvis89 - 04-03-2019, 06:41 PM - Forum: Obi Cloth
- Replies (4)
|
 |
Hi,
Great plugin! I apologise if this has been answered somewhere else, but let me explain what the issue is first. We are using Obi Cloth to simulate flags and sails on a ship.
We have the problem that when moving a ship, not all the objects using the Obi Cloth component move along with the object. It only seems to work for one object, but on all the other objects it just stays in the position where the object spawned.
I've used the same setup that is used for "Flag" in the Wind demo scene, if that helps.
Is there anything that needs to be set up for this to work?
Thanks in advance for any help!
Best regards,
James
|
|
|
| Multiple Obi Solver problem & Build problem (Oni.dll) |
|
Posted by: Piolols - 03-03-2019, 12:35 PM - Forum: Obi Rope
- Replies (1)
|
 |
Hi friends,
I have a two problem with Obi Rope.
1) When I put two Obi Solvers on scene in different objects with checked "Simulate in Local Space", work only one Obi Solver in one time, in second Obi Solver Ropes are frozen.
2) In Complicated game all Ropes not work, Game looking for "Oni.dll" in the "NameOfGame_Data/Mono/", but Oni.dll is in the "NameOfGame_Data/Plugin/Oni.dll". Creating the "Mono" folder in "NameOfGame_Data/" folder and put "Oni.dll", solves this problem.
I use Unity 2018.3.3
Sorry for my bad english :>
|
|
|
|