Skip to content

Commit

Permalink
Merge pull request #320 from RozeDoyanawa/development
Browse files Browse the repository at this point in the history
Added sign Emission. Issue #283
  • Loading branch information
Panakotta00 authored Jun 29, 2024
2 parents 2965690 + e2d98b2 commit c04084d
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2437,11 +2437,16 @@ BeginProp(RStruct<FLinearColor>, foreground, "Foreground", "The foreground Color
} PropSet() {
self->ForegroundColor = Val;
} EndProp()
BeginProp(RStruct<FLinearColor>, background, "bBckground", "The background Color.") {
BeginProp(RStruct<FLinearColor>, background, "Background", "The background Color.") {
Return (FINStruct)self->BackgroundColor;
} PropSet() {
self->BackgroundColor = Val;
} EndProp()
BeginProp(RFloat, emissive, "Emissive", "The emissiveness of the sign.") {
Return self->Emissive;
} PropSet() {
self->Emissive = Val;
} EndProp()
BeginProp(RStruct<FLinearColor>, auxiliary, "Auxiliary", "The auxiliary Color.") {
Return (FINStruct)self->AuxiliaryColor;
} PropSet() {
Expand Down

0 comments on commit c04084d

Please sign in to comment.