|
delegate void | EmitterParticleCallback (ObiEmitter emitter, int particleIndex) |
|
override void | RequestReadback () |
|
void | AddShape (ObiEmitterShape shape) |
| Adds a shape trough which to emit particles. This is called automatically by ObiEmitterShape. More...
|
|
void | RemoveShape (ObiEmitterShape shape) |
| Removes a shape trough which to emit particles. This is called automatically by ObiEmitterShape. More...
|
|
void | UpdateEmitter () |
| Updates the spawn point distribution of all shapes used by this emitter. More...
|
|
override void | SetSelfCollisions (bool selfCollisions) |
| Updates particle phases in the solver at runtime, including or removing the self-collision flag. More...
|
|
override bool | ActivateParticle () |
| Activates one particle. Specialized implementation, optimized to activate large amounts of particles per step. Does not flag active particles and simplices as dirty (which requires the solver to rebuild them), instead it appends to their end. More...
|
|
bool | EmitParticle (float offset) |
| Asks the emitter to emit a new particle. Returns whether the emission was succesful. More...
|
|
bool | KillParticle (int index) |
| Asks the emiter to kill a particle. Returns whether it was succesful. More...
|
|
void | KillAll () |
| Kills all particles in the emitter, and returns them to the emission pool. More...
|
|
override void | SimulationStart (float timeToSimulate, float substepTime) |
|
delegate void | ActorCallback (ObiActor actor) |
|
delegate void | ActorStepCallback (ObiActor actor, float simulatedTime, float substepTime) |
|
delegate void | ActorBlueprintCallback (ObiActor actor, ObiActorBlueprint blueprint) |
|
void | AddToSolver () |
| Adds this actor to its solver, if any. Automatically called by ObiSolver. More...
|
|
void | RemoveFromSolver () |
| Remove this actor from its solver, if any. Automatically called by ObiSolver. More...
|
|
virtual void | ProvideDeformableTriangles (ObiNativeIntList deformableTriangles, ObiNativeVector2List deformableUVs) |
|
virtual void | ProvideDeformableEdges (ObiNativeIntList deformableEdges) |
|
virtual int | GetDeformableEdgeCount () |
|
virtual bool | CopyParticle (int actorSourceIndex, int actorDestIndex) |
| Copies all data (position, velocity, phase, etc) from one particle to another one. More...
|
|
void | TeleportParticle (int actorIndex, Vector3 position) |
| Teleports one actor particle to a certain position in solver space. More...
|
|
virtual Matrix4x4 | Teleport (Vector3 position, Quaternion rotation) |
| Teleports the entire actor to a new location / orientation. More...
|
|
virtual bool | DeactivateParticle (int actorIndex) |
| Deactivates one particle. More...
|
|
virtual bool | IsParticleActive (int actorIndex) |
| Returns whether a given particle is active. More...
|
|
virtual void | SetOneSided (bool oneSided) |
| Updates particle phases in the solver at runtime, including or removing the one-sided flag. More...
|
|
void | SetSimplicesDirty () |
| Marks simplices dirty. More...
|
|
void | SetConstraintsDirty (Oni.ConstraintType constraintType) |
| Marks a given constraint type as dirty. More...
|
|
void | SetRenderingDirty (Oni.RenderingSystemType rendererType) |
| Marks rendering dirty. More...
|
|
IObiConstraints | GetConstraintsByType (Oni.ConstraintType type) |
| Returns the data representation of constraints of a given type being simulated by this solver. More...
|
|
virtual void | UpdateParticleProperties () |
| Call when some particle properties have been modified and need updating. More...
|
|
int | GetParticleRuntimeIndex (int actorIndex) |
| Returns the index of this particle in the solver arrays. More...
|
|
Vector3 | GetParticlePosition (int solverIndex) |
| Given a solver particle index, returns the position of that particle in world space. More...
|
|
Quaternion | GetParticleOrientation (int solverIndex) |
| Given a solver particle index, returns the orientation of that particle in world space. More...
|
|
Vector3 | GetParticleRestPosition (int solverIndex) |
| Given a solver particle index, returns the rest position of that particle. More...
|
|
Quaternion | GetParticleRestOrientation (int solverIndex) |
| Given a solver particle index, returns the rest orientation of that particle. More...
|
|
void | GetParticleAnisotropy (int solverIndex, ref Vector4 b1, ref Vector4 b2, ref Vector4 b3) |
| Given a solver particle index, returns the anisotropic frame of that particle in world space. More...
|
|
float | GetParticleMaxRadius (int solverIndex) |
| Given a solver particle index, returns the maximum world space radius of that particle, in any axis. More...
|
|
Color | GetParticleColor (int solverIndex) |
| Given a solver particle index, returns the color of that particle. More...
|
|
void | SetFilterCategory (int newCategory) |
| Sets a given category value for all particles in the actor. More...
|
|
void | SetFilterMask (int newMask) |
| Sets a given mask value for all particles in the actor. More...
|
|
void | SetMass (float mass) |
| Sets the inverse mass of each particle so that the total actor mass matches the one passed by parameter. More...
|
|
float | GetMass (out Vector3 com) |
| Returns the actor's mass (sum of all particle masses), and the position of its center of mass. More...
|
|
void | AddForce (Vector3 force, ForceMode forceMode) |
| Adds an external force to all particles in the actor. More...
|
|
void | AddTorque (Vector3 force, ForceMode forceMode) |
| Adds a torque to the actor. More...
|
|
void | ResetParticles () |
| Resets the position and velocity of all particles, to the values stored in the blueprint. More...
|
|
bool | SaveStateToBlueprint (ObiActorBlueprint bp) |
| Resets the position and velocity of all particles, to the values stored in the blueprint. More...
|
|
void | ClearState () |
|
virtual void | SimulationEnd (float simulatedTime, float substepTime) |
|
virtual void | Interpolate (float simulatedTime, float substepTime) |
|
virtual void | OnSolverVisibilityChanged (bool visible) |
|
|
override ObiActorBlueprint | sourceBlueprint [get] |
| The base actor blueprint used by this actor. More...
|
|
int | Filter [get, set] |
| Collision filter value used by fluid particles. More...
|
|
bool | isEmitting [get, set] |
| Whether the emitter is currently emitting particles. More...
|
|
override bool | surfaceCollisions = false [get, set] |
| Whether to use simplices (triangles, edges) for contact generation. More...
|
|
override bool | usesAnisotropicParticles [get] |
| Whether this actor makes use of particle anisotropy More...
|
|
int | deformableEdgesOffset [get, set] |
|
ObiSolver | solver [get] |
| The solver in charge of simulating this actor. More...
|
|
bool | isLoaded [get] |
| True if the actor blueprint has been loaded into a solver. If true, it guarantees actor.solver, actor.solverIndices and actor.solverBatchOffsets won't be null. More...
|
|
ObiCollisionMaterial | collisionMaterial [get, set] |
| The collision material being used by this actor. More...
|
|
virtual bool | surfaceCollisions [get, set] |
| Whether to use simplices (triangles, edges) for contact generation. More...
|
|
float | massScale [get, set] |
| Scale applied to this actor's particle masses. More...
|
|
int | particleCount [get] |
| Amount of particles allocated by this actor. More...
|
|
int | activeParticleCount [get] |
| Amount of particles in use by this actor. More...
|
|
bool | usesOrientedParticles [get] |
| Whether this actors makes use of particle orientations or not. More...
|
|
virtual bool | usesAnisotropicParticles [get] |
| If true, it means particles may not be completely spherical, but ellipsoidal. More...
|
|
Oni.SimplexType | simplexTypes [get] |
|
Matrix4x4 | actorLocalToSolverMatrix [get] |
| Matrix that transforms from the actor's local space to the solver's local space. More...
|
|
Matrix4x4 | actorSolverToLocalMatrix [get] |
| Matrix that transforms from the solver's local space to the actor's local space. More...
|
|
abstract ObiActorBlueprint | sourceBlueprint [get] |
| Reference to the blueprint asset used by this actor. More...
|
|
ObiActorBlueprint | sharedBlueprint [get] |
| Reference to the blueprint in use by this actor. More...
|
|
ObiActorBlueprint | blueprint [get] |
| Returns a unique instance of this actor's sourceBlueprint. More...
|
|
Properties inherited from Obi.IObiParticleCollection |
int | particleCount [get] |
|
int | activeParticleCount [get] |
|
bool | usesOrientedParticles [get] |
|