picture home | art | events | music | rack extensions | downloads | pixel blog

omino pixel blog

pixels, motion, and scripting
david van brink // Tue 2013.10.1 21:43 // {webgl}

webgl day 1

Excerpts from a personal five-evening whirlwind tour to get up to speed on some “modern interactive graphics.”

Works only on Chrome, or Safari if you enable webgl.

oh, i dont know. what do you think?


david van brink // Mon 2013.03.4 08:23 // {audio Reason}

WBL5515 1.0.1 Now Available

A minor revision to the Reason Rack Extension WBL5515 is available in the Propellerhead Shop. This version corrects some subtle bugs with track automation and note recording, and adds some responsiveness to incoming notes. Also, a small gold star is visible on the rear-facing panel. Enjoy.

1 comments
sonicjar music // Tue 2013.03.26 01:301:30 am

Wow.. WBL is free too!! 🙂 Downloading now

oh, i dont know. what do you think?


david van brink // Tue 2013.01.29 17:52 // {audio}

Rack Extensions

Just a quick note that we are branching out into audio plugins, as well. Our first free Rack Extension for Propellerheads Reason will soon be available.

Preview_Snapshot_front_root_panel

1 comments
Giuseppe // Fri 2013.02.1 01:121:12 am

Yesterday i had so much fun with it. It’s very effective combined with cv modulation from other reason built in devices. Congratulations. But most of all thanks for giving it out free.

oh, i dont know. what do you think?


david van brink // Sat 2012.09.22 00:10 // {after effects}

AE: omino_python Updated!

Omino Plug-in Suite has been updated!

Most importantly… it installs correctly for AE CS6. (*yawn*. Sorry for the delay.)

Put most excitingly, scripts for omino_python now let you name the parameters. Earlier versions just named parameters like “float 0” and “color 2”. Now, each script can define the names of the parameters it uses.

Before:

Which is a bit overwhelming. Most of those parameters don’t do anything.

But now, by including a second callback ompy_params(d), you can show only the parameters you use, named as you like:

def ompy_main(c):
    ctx = c.layer_out_context
    ctx.set_source_rgb(c.colors[0].r, c.colors[0].g, c.colors[0].b)
    ctx.move_to(c.points[0].x, c.points[0].y)
    ctx.set_font_size(c.floats[0])
    ctx.rotate(c.floats[1] / 57.29577951)
    ctx.show_text(str(c.floats[2]))

def ompy_params(d):
    d.floatDescs[0].name = "font size"
    d.floatDescs[1].name = "rotation"
    d.floatDescs[2].name = "value to print"
    d.pointDescs[0].name = "print position"
    d.colorDescs[0].name = "print color"

Produces:

Download the Omino Plug-in Suite (for Mac OS X only, alas) absolutely free at Omino.

oh, i dont know. what do you think?



0.0306s
(c) 2003-2023 omino.com / contact poly@omino.com