Class TalkerComponent
感情パラメータの単位オブジェクト。
Namespace: FluentCeVIOWrapper.Common.Talk
Assembly: FluentCeVIOWrapper.Common.dll
Syntax
[Serializable]
public record TalkerComponent : ITalkerComponent, IEquatable<TalkerComponent>
Constructors
TalkerComponent(string, string, uint)
感情パラメータの単位オブジェクトのコンストラクタ
Declaration
public TalkerComponent(string id, string name, uint value)
Parameters
Type | Name | Description |
---|---|---|
string | id |
キャストの識別子を取得します。 |
string | name |
感情の名前を取得します。 |
uint | value |
感情の値(0~100)を取得または設定します。 |
Properties
Id
キャストの識別子を取得します。
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Name
感情の名前を取得します。
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Value
感情の値(0~100)を取得または設定します。
Declaration
[Range(0, 100)]
public uint Value { get; set; }
Property Value
Type | Description |
---|---|
uint |