Browse Source

Update nekobi-ui resource cpp file (not reversed)

gh-pages
falkTX 11 years ago
parent
commit
e41eace440
2 changed files with 6601 additions and 6584 deletions
  1. +6584
    -6584
      examples/nekobi-ui_src/DistrhoArtworkNekobi.cpp
  2. +17
    -0
      utils/png2rgba.py

+ 6584
- 6584
examples/nekobi-ui_src/DistrhoArtworkNekobi.cpp
File diff suppressed because it is too large
View File


+ 17
- 0
utils/png2rgba.py View File

@@ -75,6 +75,23 @@ def png2rgba(namespace, filenames):
else:
r, g, b, a = data

if filename in ("artwork/claw1.png",
"artwork/claw2.png",
"artwork/run1.png",
"artwork/run2.png",
"artwork/run3.png",
"artwork/run4.png",
"artwork/scratch1.png",
"artwork/scratch2.png",
"artwork/sit.png",
"artwork/tail.png"):
if r == 255:
a -= 38
if a < 0: a = 0
#a = 0
#else:
#r = g = b = 255

fdC.write(" %3u, %3u, %3u, %3u," % (b, g, r, a))

if curColumn > 20:


Loading…
Cancel
Save