Interface ITweenGetterPlugin<TTarget, TValue>
Plugin providing get access to a property.
Inherited Members
Namespace: Sttz.Tweener.Core
Assembly: cs.temp.dll.dll
Syntax
public interface ITweenGetterPlugin<TTarget, TValue> : ITweenPlugin
Type Parameters
Name | Description |
---|---|
TTarget | |
TValue |
Methods
GetValue(TTarget, String, ref Object)
Get the value of the property on the target object.
Declaration
TValue GetValue(TTarget target, string property, ref object userData)
Parameters
Type | Name | Description |
---|---|---|
TTarget | target | The target object |
System.String | property | The property name |
System.Object | userData | User data set by the loader |
Returns
Type | Description |
---|---|
TValue | The current value of the property |