Table of Contents

Class CompositeTMPKeywordDatabase

A ITMPKeywordDatabase that allows you to combine multiple databases.
The first added databases take precedence / are checked first.

public sealed class CompositeTMPKeywordDatabase : ITMPKeywordDatabase
Inheritance
CompositeTMPKeywordDatabase
Implements
Inherited Members

Constructors

CompositeTMPKeywordDatabase(ITMPKeywordDatabase[])

public CompositeTMPKeywordDatabase(ITMPKeywordDatabase[] databases)

Parameters

databases ITMPKeywordDatabase[]

Properties

Databases

public IEnumerable<ITMPKeywordDatabase> Databases { get; }

Property Value

IEnumerable<ITMPKeywordDatabase>

Methods

TryGetAnchor(string, out Vector2)

public bool TryGetAnchor(string str, out Vector2 result)

Parameters

str string
result Vector2

Returns

bool

TryGetAnimCurve(string, out AnimationCurve)

public bool TryGetAnimCurve(string str, out AnimationCurve result)

Parameters

str string
result AnimationCurve

Returns

bool

TryGetBool(string, out bool)

public bool TryGetBool(string str, out bool result)

Parameters

str string
result bool

Returns

bool

TryGetColor(string, out Color)

public bool TryGetColor(string str, out Color result)

Parameters

str string
result Color

Returns

bool

TryGetFloat(string, out float)

public bool TryGetFloat(string str, out float result)

Parameters

str string
result float

Returns

bool

TryGetInt(string, out int)

public bool TryGetInt(string str, out int result)

Parameters

str string
result int

Returns

bool

TryGetUnityObject(string, out Object)

public bool TryGetUnityObject(string str, out Object result)

Parameters

str string
result Object

Returns

bool

TryGetVector3(string, out Vector3)

public bool TryGetVector3(string str, out Vector3 result)

Parameters

str string
result Vector3

Returns

bool