Search Results for

    Show / Hide Table of Contents

    Class TalkerComponent

    感情パラメータの単位オブジェクト。

    Inheritance
    object
    TalkerComponent
    Implements
    ITalkerComponent
    IEquatable<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
    <summary>
    

    キャストの識別子を取得します。

    string name
    <summary>
    

    感情の名前を取得します。

    uint value
    <summary>
    

    感情の値(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

    Implements

    ITalkerComponent
    IEquatable<T>
    In this article
    Back to top FluentCeVIOWrapper