Show / Hide Table of Contents

Class SurfaceEffectEventArgs

Event arguments for notifying a SurfaceEffectBase about changes in a property of a class (for example see DiffuseInput).

Inheritance
System.Object
System.EventArgs
SurfaceEffectEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fusee.Engine.Core.Effects
Assembly: Fusee.Engine.Core.dll
Syntax
public class SurfaceEffectEventArgs : EventArgs

Constructors

SurfaceEffectEventArgs(Type, String, Object)

Creates a new instance of type "SurfaceEffectEventArgs".

Declaration
public SurfaceEffectEventArgs(Type type, string name, object value)
Parameters
Type Name Description
System.Type type

The type of the property.

System.String name

The name of the property.

System.Object value

The value of the property.

Fields

Name

The name of the property.

Declaration
public readonly string Name
Field Value
Type Description
System.String

Type

The type of the property.

Declaration
public readonly Type Type
Field Value
Type Description
System.Type

Value

The value of the property.

Declaration
public readonly object Value
Field Value
Type Description
System.Object
Generated by DocFX
GitHub Repo
Back to top