Class ParticleModifierInterface

    Definition

    Namespace:
    Tizen.NUI.ParticleSystem
    Assembly:
    Tizen.NUI.dll

    ParticleModifierInterface provides callbacks in order to define how particles in the system should be modified

    public class ParticleModifierInterface
    Inheritance
    object
    ParticleModifierInterface

    Constructors

    View Source

    ParticleModifierInterface()

    Constructor

    Declaration
    public ParticleModifierInterface()

    Fields

    View Source

    Emitter

    ParticleEmitter proxy that can be accessed by the user implementation

    Declaration
    public ParticleEmitterProxy Emitter
    Field Value
    Type Description
    ParticleEmitterProxy

    Methods

    View Source

    Construct(params object[])

    Second constructor

    Declaration
    public virtual void Construct(params object[] list)
    Parameters
    Type Name Description
    object[] list

    List of arguments

    Remarks

    Second constructor should be overriden by the implementation. It allows passing variable number of arguments for processing. It is called immediately following the class constructor.

    View Source

    Update(ParticleEmitterProxy, List<Particle>)

    Updates the ParticleModifier.

    Declaration
    public virtual void Update(ParticleEmitterProxy emitterProxy, List<Particle> particleList)
    Parameters
    Type Name Description
    ParticleEmitterProxy emitterProxy

    Proxy to the ParticleEmitter object

    List<><Particle> particleList

    List of particles to be updated by the modifier

    Remarks

    This callback is responsible for updating particles in the system.

    This callback runs on the Update thread! It should avoid using NUI objects.

    Extension Methods

    EXamlExtensions.LoadFromEXamlByRelativePath<T>(T, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, string)
    Extensions.LoadFromXaml<TXaml>(TXaml, Type)
    Extensions.LoadFromXamlFile<TXaml>(TXaml, string)
    • View Source
    Back to top Copyright © 2016-2025 Samsung
    Generated by DocFX