Skin against canvas

Tag: Art

Square_926
p. It felt like forever since I last picked up the pen.
For a few dire seconds I thought I had lost my talent completely, but then I realized that I was just holding the tablet wrong. xD

But never mind that, cause I’ve finally managed to get a Wiimote to work as support controller for painter!!
The thing was to use the BlueSoleil stack instead of my usual choice of widcomm.
Here’s the GlovePIE script I wrote:

# painter.PIE
// Corel Painter keybinds.
^key.Space+key.NumpadMinus = wiimote.Down // Zoom out
^key.Space+key.NumpadPlus = wiimote.Up // Zoom In
key.Tab = wiimote.Left  // Hide interface
key.Ctrl+key.Alt = wiimote.A // Resize Pen
key.Alt = wiimote.B // ColorPicker
^Y = wiimote.Right  // Redo
key.Ctrl+key.Shift+key.L= wiimote.plus  //Dry Waterlayer.
^F = wiimote.One // Fill

If wiimote.Two then  // Workaround for Clear.
  ^A = true
  ^A = false
  wait 60 ms
  key.Backspace = true
  key.Backspace = false
EndIf

Enjoy!
PS. I’ve heard of a colorpicker plugin for photoshop that makes it slightly more useful, I’ll write an report on it if I manage to find it.