![]() |
Tutorial? - Printable Version +- Obi Official Forum (https://obi.virtualmethodstudio.com/forum) +-- Forum: Obi Users Category (https://obi.virtualmethodstudio.com/forum/forum-1.html) +--- Forum: Obi Softbody (https://obi.virtualmethodstudio.com/forum/forum-12.html) +--- Thread: Tutorial? (/thread-2485.html) Pages:
1
2
|
RE: Tutorial? - Havie - 19-09-2020 Quote:josemendez What manual this? http://obi.virtualmethodstudio.com/tutorials/collisions.html Sorry but Im still confused. The "Phase Value" is on the "Obi Collider". You just said not to use a collider and a softbody at the same time? I previously read the bit about collisions requiring different phase values, which is why I added an Obi Collider to the same gameobject that has my softbody. Its the only way I can see a field for a "phase" value. https://i.imgur.com/HTQg4HR.png I've gone hunting for other locs for a phase value, I tried editing the blueprint im using, but saw nothing in there. Still don't understand this section at all. I feel like more indepth video tutorials would really help Obi RE: Tutorial? - josemendez - 19-09-2020 (19-09-2020, 04:24 PM)Havie Wrote: Sorry but Im still confused. The "Phase Value" is on the "Obi Collider". You just said not to use a collider and a softbody at the same time? Quote from the collisions page in the manual/docs, in bold the important bits: http://obi.virtualmethodstudio.com/tutorials/collisions.html Quote:Sometimes you want certain actors, or even only some specific particles to ignore a particular collider. You can use phases for this. Each ObiCollider has a "Collision phase" property, and particles have a "Phase" channel that you can set using the blueprint editor. Only colliders and particles of different phases will collide. Colliders and particles of the same phase will ignore each other. By default, ObiColliders are in phase 0 and particles in phase 1, so they will collide right away. Rephrasing this: both colliders and particles have a phase value. The phase for a collider is set in the ObiCollider component. The phase for a particle is set in the blueprint editor. Its one of the per-particle channels that you can set using the particle selection tool, or paint using the property painting tool. (19-09-2020, 04:24 PM)Havie Wrote: I've gone hunting for other locs for a phase value, I tried editing the blueprint im using, but saw nothing in there. Still don't understand this section at all. I feel like more indepth video tutorials would really help Obi In the blueprint editor, there's a "properties" section (both in the selection and painting tools) with a dropdown that lets you select which per-particle property you want to edit. Among these properties there's "Phase". ![]() In the page for softbody blueprints there's a rundown of all properties: http://obi.virtualmethodstudio.com/tutorials/softbodysetup.html Quote:You can get/set any property of the currently selected particles: Now, note that you don't need to have different blueprints if all you want is to have multiple actors using the same blueprint, with a different phase for each one. You can set the phase values for the particles at runtime too, check out the included BallPool sample scene. (19-09-2020, 04:24 PM)Havie Wrote: I feel like more indepth video tutorials would really help Obi You're totally right. I know there should be more video tutorials, but writing, recording and editing a video tutorial takes a lot of time, much more than generating written documentation. I'm a one-person team, so I have to carefully choose where to spend the time I devote to Obi to make the most out of it: maintaining the code, developing it further, supporting users, writing docs, maintaining the forums/webpage, etc. In the last update (5.6) I included one more sample scene for each asset, a more complex/complete one (kind of a mini-game) because that's what users demanded for a long time. The other most popular demand by far is "make more video tutorials", so you're backed up by lots of people. Rest assured that I will. ![]() RE: Tutorial? - Havie - 19-09-2020 Ahh thanks for your response. I am glad to hear you will be doing some video tutorials in the future. The one on the assest store made it seem too easy. So what Sample scene? Because I went looking for a sample scene on install to learn from, and didnt see one? https://i.imgur.com/EBkH23k.png Thanks for pointing out the drop down. I've painted Ball as phase 1 and Can as phase 2. And hit "done". Yet the changes do not seem to save. Nothing collides and my trash can falls over immediately and self implodes for whatever reason. Could you please take a look ? https://youtu.be/fd7GmCl3rOs RE: Tutorial? - josemendez - 20-09-2020 (19-09-2020, 10:41 PM)Havie Wrote: So what Sample scene? Because I went looking for a sample scene on install to learn from, and didnt see one? Look in that Softbody folder. Whole path from Assets: Obi/Samples/Softbody. Anyway, you could just use the search bar to filter and show all scenes, no need to look for them yourself. (19-09-2020, 10:41 PM)Havie Wrote: Thanks for pointing out the drop down. I've painted Ball as phase 1 and Can as phase 2. And hit "done". Yet the changes do not seem to save. Seems to be the wrong video? Nothing related to Obi in there... RE: Tutorial? - Havie - 20-09-2020 omgosh so sorry, https://youtu.be/eEW56osPuaM Looking into that scene now Ok I've given up on my scene and just basically cloned your barrel scene since its pretty much what I needed. I cant tell what you have different than mine, but this is working a lot better now. The Barrel doesnt self implode and the ball can collide. However, now its possible for the ball to get stuck inside the barrel then when firing it again, it bugs out and goes below the ground. Thoughts? https://youtu.be/UoyVYGCBIno I am also having trouble figuring out how to do an "OnCollisionEnter" call. From what I've read I understand its the Solvers Job to handle collisions. "solvers will generate collision constraints" However the only items I see on the solver related to Collisons are : collisionConstraintParameters (field) collisionMaterials (field) OnCollision (event) OnParticleCollision (event) particleCollisionConstraintParameters (field) I am not finding any info about these under "Solver" in API https://i.imgur.com/OToZBlg.png Best thing I can find is on the collisionConstraintParameter : EvaluationOrder evaluationOrder int iterations float SORFactor bool enabled But theres really no info here on how to get any info out of it? like what object is being collider with? I've Tried subscribing to this event https://i.imgur.com/iSHPTxy.png But as far as I can tell theres nothing of value in an OniContact for telling me which GameObject was hit ? EDIT: I found this under the scripting section: http://obi.virtualmethodstudio.com/tutorials/scriptingcollisions.html Would be really nice if there was a link to this under the Collision section as its relevant and i totally missed it RE: Tutorial? - Havie - 20-09-2020 https://i.imgur.com/MlYQhok.png Why is this line erroring? Your guide tells us how to get the collider for the OTHER item involved in a collision, but I first need to verify that the initial item in the collision belongs to the gameobject this script is on. For some reason ObiColliderBase self = handles[contact.particle].owner; results in ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index I cant seem to get a gameobject from solver.particleToActor[contact.particle]; either RE: Tutorial? - josemendez - 20-09-2020 (20-09-2020, 04:18 PM)Havie Wrote: https://i.imgur.com/MlYQhok.png You’re indexing an array of collider handles using the index of a particle. This makes no sense, and usually will result in index out of bounds errors since there’s more particles than colliders involved in a typical scene. handles[contact.other] is the correct way to do it. Remember that: Contact.particle: the index of a particle. Can be used to retrieve data from any of the per-particle data arrays in the solver. Contact.other: the index of a collider handle (in case of the OnCollision event) or another particle (in case of the OnParticleCollision event). (20-09-2020, 04:18 PM)Havie Wrote: I cant seem to get a gameobject from solver.particleToActor[contact.particle]; either Its pretty straightforward: var particleInActor = solver.particleToActor[contact.particle]; GameObject go = particleInActor.actor.gameObject; The manual specifies that the ParticleInActor struct contains both a reference to the actor, and the index of the particle in that actor. Once you have a reference to the actor (which is a component) you can access the gameobject as you would from any component in Unity. RE: Tutorial? - Havie - 21-09-2020 (20-09-2020, 07:20 PM)josemendez Wrote: Its pretty straightforward:Okay i got this : https://i.imgur.com/fLyaind.png Also this is being called constantly even when nothing is happening in the scene because its touching the terrain(floor). I can't imagine this being performative when this script is on multiple objects all wanting to know when they've been collided with. Surely theres some other solution you have to recreate the collision system such as OnCollisionEnter() ? Or is this not a big performance hit as Unitys collision system already did this? RE: Tutorial? - josemendez - 21-09-2020 (21-09-2020, 07:02 PM)Havie Wrote: Okay i got this : Internally, all physics engines have to deal with a list of contacts every frame, as contacts need to be solved in order for the simulation to work. In fact, the contacts list is iterated several times per frame to solve the system. Unity does this, and Obi does this, all physics engines in existence do this: they build a list of contacts, then solve the contact equation system by iterating trough all contacts at least once. So iterating trough all contacts one last time to filter or post process the contacts is no big deal, if done correctly. Internally, Unity performs boolean list operations to determine when to call OnCollisionEnter/Exit/Stay for different objects. In Obi, this is up to you. Of course, you could iterate over the list of contacts in parallel using jobs instead of a naive for loop in plain C#, and that would be much faster. Quote:I can't imagine this being performative when this script is on multiple objects all wanting to know when they've been collided with. This would of course result in terrible performance. You should iterate trough all contacts just once, and extract the information you need for different objects. Iterating trough all contacts once per object is a really bad idea. RE: Tutorial? - josemendez - 22-09-2020 Here's an example on how to filter out contacts and determine enter/exit/stay events fast, regardless of how many colliders are there in the scene. It's a component that you add to the solver, and it calls enter/exit/stay Unity events. The actual contact passed to each event is guaranteed to be between unique <actor, collider> pairs, but the particular particle in the contact passed for the actor is undefined (in case there's more than one contact between the actor and the collider, it could pass a contact for any of the actor particles). Not terribly fast (not multithreaded, non vectorized, vanilla C# only) but reasonably well optimized and useable right away: Code: using UnityEngine; It works like this:
"n" being the amount of contacts this frame and "m" the amount of contacts in the previous frame, the algorithmic worst case cost of the whole thing is O(n*log(n) + m). So quite good compared to the naive quadratic approach. You could further optimize it by using parallel sorting, as sorting is the bottleneck. Once you have this component, you can just subscribe to the events and do whatever you need. For instance, subscribing this sample component: Code: using UnityEngine; Makes colliders blink green when the actor enters, and blink red when it exits. I'm not providing code for the Blinker component, as it simply changes the material's color when you call Blink(). Here's the result: |