New ColorPicker release. Hop to be easy to set and use.
Waiting for your opinions! HAVE FUN!
link + flash demo: http://redcloud.no-ip.info/?page_id=9
Code:
IGUIColorPicker *color_picker = NULL;
color_picker = guienv->addColorPicker();
s32 r, g, b; // works for s32 [0 .. 255] / f32 [0 .. 1]
color_picker->getColor(&r, &g, &b);
printf(”Color Picker Change RGB = %d %d %d\n”, r, g, b);
// New GUI Events
EGET_COLOR_PICKER_OK
EGET_COLOR_PICKER_CANCELLED
EGET_COLOR_PICKER_COLOR_CHANGE
Download:
Drop & Play: bcolorpicker.zip
http://redcloud.no-ip.info/Download/Col ... picker.zip
(ColorPicker in Irrlicht .dll for OpenGL and DirectX9)
Source: scolorpicker.zip
http://redcloud.no-ip.info/Download/Col ... picker.zip
ColorPicker v2 (update)
-
- Posts: 101
- Joined: Wed Feb 15, 2006 4:22 pm
- Location: RO
-
- Posts: 19
- Joined: Tue Apr 26, 2005 6:10 am