ColorPicker v2 (update)

Announce new projects or updates of Irrlicht Engine related tools, games, and applications.
Also check the Wiki
Post Reply
chromdragon
Posts: 101
Joined: Wed Feb 15, 2006 4:22 pm
Location: RO

ColorPicker v2 (update)

Post by chromdragon »

New ColorPicker release. Hop to be easy to set and use.

Waiting for your opinions! HAVE FUN!

Image

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
etcaptor
Posts: 871
Joined: Fri Apr 09, 2004 10:32 pm
Location: Valhalla
Contact:

Post by etcaptor »

Nice!
Right now I have not an idea where will use similar stuff, but GUI controls like your are my favourites.
Thanks for sharing.
ImageImage
Site development -Rock and metal online
--- etcaptor.com ------freenetlife.com
Ecliptic Fate
Posts: 19
Joined: Tue Apr 26, 2005 6:10 am

Post by Ecliptic Fate »

Nice.

Great yet another section of gui to back engineer and modify. 8)

:roll: :wink:
drac_gd
Posts: 132
Joined: Sun Apr 09, 2006 8:43 pm

Post by drac_gd »

does anyone have this color picker? the links are dead :cry:
Midnight
Posts: 1772
Joined: Fri Jul 02, 2004 2:37 pm
Location: Wonderland

Post by Midnight »

I believe thats because it's now integrated with irrlicht. 8)
Post Reply