ISceneEditedclass

objectISceneEdited
Namespace
global
Assembly
Sandbox.Tools
Declaration
public abstract interface Editor.EditorEvent.ISceneEdited

Methods4

Showing 4 methods

public virtual void ComponentEdited(Sandbox.Component cmp, string propertyName)PUBLICVIRTUAL

Called when a `Sandbox.Component` has been edited, so the new value can be inspected.

ParameterTypeDescription
cmpComponent
propertyNamestring
Returns:void

public virtual void ComponentPreEdited(Sandbox.Component cmp, string propertyName)PUBLICVIRTUAL

Called when a property on a `Sandbox.Component` is about to be edited, so the old value can be inspected.

ParameterTypeDescription
cmpComponent
propertyNamestring
Returns:void

public virtual void GameObjectEdited(Sandbox.GameObject go, string propertyName)PUBLICVIRTUAL

Called when a `Sandbox.GameObject` has been edited, so the new value can be inspected.

ParameterTypeDescription
goGameObject
propertyNamestring
Returns:void

public virtual void GameObjectPreEdited(Sandbox.GameObject go, string propertyName)PUBLICVIRTUAL

Called when a property on a `Sandbox.GameObject` is about to be edited, so the old value can be inspected.

ParameterTypeDescription
goGameObject
propertyNamestring
Returns:void

On this page