Skip to content

cop_observer_color

Kamran Wali edited this page Jun 29, 2025 · 1 revision

Class Name: COP_ObserverColor

Inherits: Resource

Description

cop_observer_color class stores and shares the reference to a Color type. When the value has been changed then the changed value will also be emitted to its observers through the callables in the Singal. This class works as the Observer Pattern. The value can NOT be set during editor mode but it can ONLY be set during run time.

Tutorial

Properties

Type Name Default Value
Color _value

Methods

Return Type Name
Color get_value()
Color get_value_emit()
void set_value( Color value )
void set_value_emit( Color value )
void disconnect_all()

Signals

value_changed ( Color value )

Emitted when the _value has been changed through the method set_value_emit().


Property Descriptions

Color _value

The stored value that will be sent to obeservers when ever this value changes through the method set_value_emit(). This value is also emitted to observers when the method get_value_emit() is called. You can also get/set the value without the need for emitting by calling the methods get_value() or set_value()


Method Descriptions

Color get_value ()

This method returns the _value without emitting to the observers.


Color get_value_emit ()

This method returns the _value and emits it to the observers.


void set_value ( Color value )

This method sets the _value without emitting to the obserers.


void set_value_emit ( Color value )

This method sets the _value and emits it to the observers.


void disconnect_all ()

This method removes/disconnects all the connected callable objects from the Signal value_changed.


Clone this wiki locally