so meta
I wonder who is even online this is great
edit: mystery solved, see op
paintonline - online paint (for painting online)
Re: PENISDRAW 2 - draw dicks with friends ONLINE! (UPDATED)
excessive ❤ moé (LÖVE3D, CPML, ...). holo on IRC.
Re: PENISDRAW 2 - draw dicks with friends ONLINE! (UPDATED)
This gun is amazing. You're all amazing. What a night.
STI - An awesome Tiled library
LÖVE3D - A 3D library for LÖVE 0.10+
Dev Blog | GitHub | excessive ❤ moé
LÖVE3D - A 3D library for LÖVE 0.10+
Dev Blog | GitHub | excessive ❤ moé
- zorg
- Party member
- Posts: 3468
- Joined: Thu Dec 13, 2012 2:55 pm
- Location: Absurdistan, Hungary
- Contact:
Re: PENISDRAW 2 - draw dicks with friends ONLINE! (UPDATE #9
Had fun drawing; if i had time, i'd try to implement both alpha and blendmode support... but hey, this is already better than flockdraw at least
Me and my stuff True Neutral Aspirant. Why, yes, i do indeed enjoy sarcastically correcting others when they make the most blatant of spelling mistakes. No bullying or trolling the innocent tho.
Re: PENISDRAW 2 - draw dicks with friends ONLINE! (UPDATE #9
Another update!
- resized the canvas to 1024x768
- cursor is now local
- accidentally broke older clients
- server is now less permissive
- variable max/min brush/text sizes via server rules
- clipboard support
- ctrl+backspace works
DRAW DRAW - online painting app CLICK NUMBERS - cool game with numbers THEME LOVEFRAMES - a collection of my themes HOST FOR FREE - free hosting for online LOVE games STALK PEOPLE - a map of LOVE users
Re: PENISDRAW 2 - draw dicks with friends ONLINE! (UPDATE #9
art
excessive ❤ moé (LÖVE3D, CPML, ...). holo on IRC.
Re: PENISDRAW 2 - draw dicks with friends ONLINE! (UPDATE #1
lolololololol
STI - An awesome Tiled library
LÖVE3D - A 3D library for LÖVE 0.10+
Dev Blog | GitHub | excessive ❤ moé
LÖVE3D - A 3D library for LÖVE 0.10+
Dev Blog | GitHub | excessive ❤ moé
- alberto_lara
- Party member
- Posts: 372
- Joined: Wed Oct 30, 2013 8:59 pm
Re: PENISDRAW 2 - draw dicks with friends ONLINE! (UPDATE #1
Ok, this is something I haven't seen in a lot of time, nice
Re: PENISDRAW 2 - draw dicks with friends ONLINE! (UPDATE #1
thanks guys
DRAW DRAW - online painting app CLICK NUMBERS - cool game with numbers THEME LOVEFRAMES - a collection of my themes HOST FOR FREE - free hosting for online LOVE games STALK PEOPLE - a map of LOVE users
Re: PENISDRAW - draw dicks with friends ONLINE!
Here is my code for pasting images. Works with Version 2. Just add this to the love.keypressed function.unek wrote:my request: please share your custom stuff for automated drawing if you made something cool
Code: Select all
if (not text and key=='p') then
local saved_color = current_color
current_width = math.max(current_width, 2) -- does not work with line_width of 1 - I don't know why.
local pic = love.image.newImageData("pic.png")
-- the top left of the picture is below the cursor
local x_off = love.mouse.getX()
local y_off = love.mouse.getY()
-- unek wanted us to limit pictures to 150 lines max.
local x_max = math.min(pic:getWidth()-1, 150)
local y_max = math.min(pic:getHeight()-1, 150)
for x = 0, x_max do
for y = 0, y_max do
r, g, b, a = pic:getPixel(x, y)
-- exclude transparent pixels
if a~=0 then
line = {}
current_color = {r, g, b}
table.insert(line, x_off+current_width*x)
table.insert(line, y_off+current_width*y)
table.insert(line, x_off+current_width*x)
table.insert(line, y_off+current_width*y)
send_data(serialize_line(line))
end
end
end
-- reset color
current_color = saved_color
-- reset line
line = {love.mouse.getX(), love.mouse.getY()}
end
Who is online
Users browsing this forum: No registered users and 8 guests