class REB_Oasis(REB_DirectColorHelper) {
; Provides colors to use with some Direct Coloring classes <br>
public:
import "common.ulb"
; constructor
func REB_Oasis(Generic pparent)
REB_DirectColorHelper(pparent)
endfunc
func Init()
direct[0] = @color1
direct[1] = @color2
direct[2] = @color3
direct[3] = @color4
direct[4] = @color5
direct[5] = @color6
direct[6] = @color7
direct[7] = @color8
endfunc
default:
title = "Oasis Array"
int param v_Oasis
caption = "Version (Oasis Colors)"
default = 100
hint = "This version parameter is used to detect when a change has been made to the formula that is incompatible with the previous version. When that happens, this field will reflect the old version number to alert you to the fact that an alternate rendering is being used."
visible = @v_Oasis < 100
endparam
color param color1
caption = "Color 1"
default = rgba(160/255,144/255,119/255,1)
endparam
color param color2
caption = "Color 2"
default = rgba(98/255,141/255,113/255,1)
endparam
color param color3
caption = "Color 3"
default = rgba(146/255,169/255,149/255,1)
endparam
color param color4
caption = "Color 4"
default = rgba(216/255,194/255,196/255,1)
endparam
color param color5
caption = "Color 5"
default = rgba(99/255,90/255,85/255,1)
endparam
color param color6
caption = "Color 6"
default = rgba(190/255,184/255,198/255,1)
endparam
color param color7
caption = "Color 7"
default = rgba(253/255,243/255,218/255,1)
endparam
color param color8
caption = "Color 8"
default = rgba(228/255,210/255,206/255,1)
endparam
}