Class ParticleSystemWindow
Particle System window allows to view and edit ParticleSystem asset. Note: it uses ClonedAssetEditorWindowBase which is creating cloned asset to edit/preview.
Inheritance
Namespace: FlaxEditor.Windows.Assets
Assembly: FlaxEngine.CSharp.dll
Syntax
public sealed class ParticleSystemWindow : ClonedAssetEditorWindowBase<ParticleSystem>, IComparable, IDrawable, IEditable, IContentItemOwner
Constructors
ParticleSystemWindow(Editor, AssetItem)
Declaration
public ParticleSystemWindow(Editor editor, AssetItem item)
Parameters
Editor
editor
|
FlaxEditor.Content.AssetItem
item
|
Properties
Preview
Gets the particle system preview.
Declaration
public ParticleSystemPreview Preview { get; }
Property Value
ParticleSystemPreview
|
Timeline
Gets the timeline editor.
Declaration
public ParticleSystemTimeline Timeline { get; }
Property Value
ParticleSystemTimeline
|
Undo
Gets the undo history context for this window.
Declaration
public Undo Undo { get; }
Property Value
Undo
|
UseLayoutData
Gets a value indicating whether window uses custom layout data.
Declaration
public override bool UseLayoutData { get; }
Property Value
System.Boolean
|
Overrides
Methods
OnAssetLinked()
Called when asset gets linked and window can setup UI for it.
Declaration
protected override void OnAssetLinked()
Overrides
OnDestroy()
Method called when managed instance should be destroyed
Declaration
public override void OnDestroy()
Overrides
OnLayoutDeserialize()
Called when during windows layout deserialization if window has no layout data to load. Can be used to restore default UI layout.
Declaration
public override void OnLayoutDeserialize()
Overrides
OnLayoutDeserialize(XmlElement)
Called when during windows layout deserialization. Each window can use it to load custom interface data (eg. splitter position).
Declaration
public override void OnLayoutDeserialize(XmlElement node)
Parameters
System.Xml.XmlElement
node
The Xml document node. |
Overrides
OnLayoutSerialize(XmlWriter)
Called when during windows layout serialization. Each window can use it to store custom interface data (eg. splitter position).
Declaration
public override void OnLayoutSerialize(XmlWriter writer)
Parameters
System.Xml.XmlWriter
writer
The Xml writer. |
Overrides
RefreshTempAsset()
Refreshes temporary asset to see changes live when editing the timeline.
Declaration
public bool RefreshTempAsset()
Returns
System.Boolean
True if cannot refresh it, otherwise false. |
Save()
Tries to save asset changes if it has been edited.
Declaration
public override void Save()
Overrides
UnlinkItem()
Unlinks the item. Removes reference to it and unbinds all events.
Declaration
protected override void UnlinkItem()
Overrides
Update(Single)
Perform control update and all its children
Declaration
public override void Update(float deltaTime)
Parameters
System.Single
deltaTime
Delta time in seconds |
Overrides
UpdateToolstrip()
Updates the toolstrip buttons and other controls. Called after some window events.
Declaration
protected override void UpdateToolstrip()