Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411522 Posts in 69377 Topics- by 58431 Members - Latest Member: Bohdan_Zoshchenko

April 28, 2024, 09:02:40 AM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsPlayerGeneralSomething you JUST did thread
Pages: 1 ... 221 222 [223] 224 225
Print
Author Topic: Something you JUST did thread  (Read 459424 times)
saibot216
Level 10
*****



View Profile WWW
« Reply #4440 on: March 19, 2014, 01:04:39 PM »

Made the theme song for my friend's game.
Logged

ARRD-ART
Guest
« Reply #4441 on: March 19, 2014, 01:35:38 PM »

And yet you already have 26 posts.  Shocked

Indubitably.

 Ninja
Logged
s_l_m
Level 8
***


Open to collabs


View Profile
« Reply #4442 on: March 20, 2014, 04:43:21 PM »

Got the heart rate part of the Polygraph I am building for University working, it's pretty cool to see your pulse being graphed out
Logged

Think happy thoughts.
ANtY
Level 10
*****


i accidentally did that on purpose


View Profile WWW
« Reply #4443 on: March 20, 2014, 04:50:29 PM »

recorded some gifs

apparently 9 GB free space is not enough to edit a 60 MB gif in Photoshop :<<<





Logged

Impmaster
Level 10
*****


Scary, isn't it?


View Profile WWW
« Reply #4444 on: March 20, 2014, 05:47:22 PM »

I hope you're going to change that enemy design. You took it from your last game, so it looks totally out of place.
Logged

Do I need a signature? Wait, now that I have a Twitter I do: https://twitter.com/theimpmaster
ARRD-ART
Guest
« Reply #4445 on: March 20, 2014, 06:10:09 PM »

The enemies should be giant Nicolas Cage faces.
Logged
Martin 2BAM
Level 10
*****


@iam2bam


View Profile WWW
« Reply #4446 on: March 20, 2014, 07:08:32 PM »


.plumbing HOLY SHIT  Crazy
Logged

Working on HeliBrawl
Martin 2BAM
Level 10
*****


@iam2bam


View Profile WWW
« Reply #4447 on: March 20, 2014, 07:10:58 PM »

Seemed like the best (read: most stupid) choice from the fabulous selection of new TLD names. These all became available this year.

.bike
.clothing
.guru
.holdings
.plumbing
.singles
.ventures
.camera
.equipment
.estate
.gallery
.graphics
.lighting
.photography
.construction
.contractors
.directory
.kitchen
.land
.technology
.today


Just get creative.

I just think that prefixing "ass" to any of those top level domains would be great.

ass.plumbing
ass.holdings
ass.techonlogy
ass.land
ass.today
Logged

Working on HeliBrawl
ARRD-ART
Guest
« Reply #4448 on: March 20, 2014, 07:31:13 PM »

ass.techonlogy

What's techonlogy?  Durr...?
Logged
Code_Assassin
Level 5
*****


freedom


View Profile
« Reply #4449 on: March 20, 2014, 07:42:17 PM »

made a commit. stashed some changes. source tree is the best.
Logged
brettchalupa
Guest
« Reply #4450 on: March 21, 2014, 05:30:00 AM »

made a commit. stashed some changes. source tree is the best.

awww yeah (but I think what you mean is git is the the best). Source tree simply wraps what you could do from the command line in a GUI.  Wink
Logged
Noogai03
Level 6
*


WHOOPWHOOPWHOOPWHOOP


View Profile WWW
« Reply #4451 on: March 21, 2014, 01:04:59 PM »

source tree is nice, but github for windows makes me scream with delight when I use it
Logged

So long and thanks for all the pi
saibot216
Level 10
*****



View Profile WWW
« Reply #4452 on: March 21, 2014, 03:09:50 PM »

Finished up the sounds and music for my friend's game, which will be released soon. Smiley
Logged

ANtY
Level 10
*****


i accidentally did that on purpose


View Profile WWW
« Reply #4453 on: March 21, 2014, 04:08:30 PM »

I hope you're going to change that enemy design. You took it from your last game, so it looks totally out of place.
yeah, they're just placeholders

one cannot do everything at once  Waaagh!
Logged

ryansumo
Level 5
*****



View Profile WWW
« Reply #4454 on: March 24, 2014, 06:08:42 PM »

played some Hearthstone.
Logged

Graham-
Level 10
*****


ftw


View Profile
« Reply #4455 on: March 25, 2014, 03:02:59 AM »

source tree is nice, but github for windows makes me scream with delight when I use it

o rly? I just use command-line git.
Logged
framk
Level 2
**


I don't know anything


View Profile
« Reply #4456 on: March 26, 2014, 01:44:50 AM »

learned a little lua today, so I started work on a program to make the syntax less shitty (I'm used to C/C++ syntax). Anyhow, I wrote a program that takes a new file extension called .lpp that looks like this:

Code:
/*
* This is a test of this shit. Hopefully it'll work, y'all
*/

fn love.load(){
x = 32;
y = 32;
deltax = 2;
deltay = 3;
love.graphics.setBackgroundColor( 255, 0, 0 );
}

fn love.update(dt){
x += deltax;
y += deltay;

if x <= 0{
deltax = -deltax;
        }
else if x >= 640{
deltax = -deltax;
}
if y <= 0 {
deltay = -deltay;
        }
else if x >= 480{
deltay = -deltay;
}

mouse_x, mouse_y = love.mouse.getPosition();
}

fn love.draw(){
//Draw crosshair
love.graphics.line( mouse_x - 16, mouse_y, mouse_x + 16, mouse_y );
love.graphics.line( mouse_x, mouse_y - 16, mouse_x, mouse_y + 16 );
love.graphics.print( x, 32, 32 );
love.graphics.print( y, 32, 48 );
love.graphics.print( "Oh man, it works!", x, y );
}

And the program turns it into a .lua file that looks like this:
Code:
--[[
This is a test of this shit. Hopefully it'll work, y'all
]]--

function love.load()
x = 32
y = 32
deltax = 2
deltay = 3
love.graphics.setBackgroundColor( 255, 0, 0 )
end

function love.update(dt)
x = x + deltax
y = y + deltay

if x <= 0 then
deltax = -deltax
elseif x >= 640 then
deltax = -deltax
end
if y <= 0  then
deltay = -deltay
elseif x >= 480 then
deltay = -deltay
end
mouse_x, mouse_y = love.mouse.getPosition()
end

function love.draw()
--Draw crosshair
love.graphics.line( mouse_x - 16, mouse_y, mouse_x + 16, mouse_y )
love.graphics.line( mouse_x, mouse_y - 16, mouse_x, mouse_y + 16 )
love.graphics.print( x, 32, 32 )
love.graphics.print( y, 32, 48 )
love.graphics.print( "Oh man, it works!", x, y )
end

Yet again, I only started learning lua today, but it seems pretty cool, so it might be a language I use more in the future
Logged

s_l_m
Level 8
***


Open to collabs


View Profile
« Reply #4457 on: March 26, 2014, 08:48:04 AM »

Woke up at 4 am, threw up, using the rest of this sick day to work through some Blender tutorials.
Logged

Think happy thoughts.
framk
Level 2
**


I don't know anything


View Profile
« Reply #4458 on: May 20, 2014, 06:05:07 PM »

Just landed a job that pays much more than I deserve, but I'm happy I'm no longer unemployed.
Logged

Henry_Oswald
Level 1
*



View Profile WWW
« Reply #4459 on: May 20, 2014, 08:50:23 PM »

Just landed a job that pays much more than I deserve, but I'm happy I'm no longer unemployed.

Hey, I landed a job too. Hooray for being employed!  Smiley
Logged

"Do you think love can bloom even on the battlefield?"
- Otacon
Quill Devlog: http://forums.tigsource.com/index.php?topic=38129.0
Home Website: http://psychospectacle.weebly.com
Watch us on IndieDB: http://www.indiedb.com/games/quill
Follow us on Twitter: https://twitter.com/PsychoSpecs
Pages: 1 ... 221 222 [223] 224 225
Print
Jump to:  

Theme orange-lt created by panic