Skip to main content

EncodedAttributeValue

Allows access to an attribute like a ValueObject, but also encoded or decoded

Properties

Value

EncodedAttributeValue.Value: T

The current property of the Attribute. Can be assigned to to write the attribute.

Changed

This item is read only and cannot be modified. Read Only
EncodedAttributeValue.Changed: Signal<()>

Signal that fires when the attribute changes

Functions

new

EncodedAttributeValue.new(
objectInstance,
attributeNamestring,
encode(TValue) → T,
decode(T) → TValue,
defaultValueT?
) → EncodedAttributeValue<T,TValue>

Constructs a new EncodedAttributeValue. If a defaultValue that is not nil is defined, then this value will be set on the Roblox object.

ObserveBrio

EncodedAttributeValue:ObserveBrio(conditionfunction | nil) → Observable<Brio<any>>

Handles observing the value conditionalli

Observe

EncodedAttributeValue:Observe() → Observable<any>

Observes an attribute on an instance.

Show raw api
{
    "functions": [
        {
            "name": "new",
            "desc": "Constructs a new EncodedAttributeValue. If a defaultValue that is not nil\nis defined, then this value will be set on the Roblox object.",
            "params": [
                {
                    "name": "object",
                    "desc": "",
                    "lua_type": "Instance"
                },
                {
                    "name": "attributeName",
                    "desc": "",
                    "lua_type": "string"
                },
                {
                    "name": "encode",
                    "desc": "",
                    "lua_type": "(TValue) -> T"
                },
                {
                    "name": "decode",
                    "desc": "",
                    "lua_type": "(T) -> TValue"
                },
                {
                    "name": "defaultValue",
                    "desc": "",
                    "lua_type": "T?"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "EncodedAttributeValue<T, TValue>"
                }
            ],
            "function_type": "static",
            "source": {
                "line": 28,
                "path": "src/attributeutils/src/Shared/EncodedAttributeValue.lua"
            }
        },
        {
            "name": "ObserveBrio",
            "desc": "Handles observing the value conditionalli",
            "params": [
                {
                    "name": "condition",
                    "desc": "",
                    "lua_type": "function | nil"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Observable<Brio<any>>"
                }
            ],
            "function_type": "method",
            "source": {
                "line": 53,
                "path": "src/attributeutils/src/Shared/EncodedAttributeValue.lua"
            }
        },
        {
            "name": "Observe",
            "desc": "Observes an attribute on an instance.",
            "params": [],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Observable<any>"
                }
            ],
            "function_type": "method",
            "source": {
                "line": 63,
                "path": "src/attributeutils/src/Shared/EncodedAttributeValue.lua"
            }
        }
    ],
    "properties": [
        {
            "name": "Value",
            "desc": "The current property of the Attribute. Can be assigned to to write\nthe attribute.",
            "lua_type": "T",
            "source": {
                "line": 75,
                "path": "src/attributeutils/src/Shared/EncodedAttributeValue.lua"
            }
        },
        {
            "name": "Changed",
            "desc": "Signal that fires when the attribute changes",
            "lua_type": "Signal<()>",
            "readonly": true,
            "source": {
                "line": 82,
                "path": "src/attributeutils/src/Shared/EncodedAttributeValue.lua"
            }
        }
    ],
    "types": [],
    "name": "EncodedAttributeValue",
    "desc": "Allows access to an attribute like a ValueObject, but also encoded or decoded",
    "source": {
        "line": 6,
        "path": "src/attributeutils/src/Shared/EncodedAttributeValue.lua"
    }
}