Class InitializationMethodManager.AlgorithmInfo
Represents a single generation method and contains all information needed to initialize a system with it.
Inheritance
object
InitializationMethodManager.AlgorithmInfo
Namespace: AS2
Assembly: .dll
Syntax
private class InitializationMethodManager.AlgorithmInfo
Constructors
| Edit this page View SourceAlgorithmInfo(string, Type, ConstructorInfo, MethodInfo)
Declaration
public AlgorithmInfo(string name, Type type, ConstructorInfo ctor, MethodInfo generateMethod)
Parameters
Type | Name | Description |
---|---|---|
string | name | |
Type | type | |
ConstructorInfo | ctor | |
MethodInfo | generateMethod |
Fields
| Edit this page View Sourcector
Reference to the method's constructor. This must be the constructor that gets a single parameter of type ParticleSystem.
Declaration
public ConstructorInfo ctor
Field Value
Type | Description |
---|---|
ConstructorInfo |
generateMethod
Reference to the generation method itself.
Declaration
public MethodInfo generateMethod
Field Value
Type | Description |
---|---|
MethodInfo |
name
The full name of the generation method.
Declaration
public string name
Field Value
Type | Description |
---|---|
string |
type
The type of the generator class.
Declaration
public Type type
Field Value
Type | Description |
---|---|
Type |