Welcome, Guest. Please login or register.

Login with username, password and session length

 
Advanced search

1411413 Posts in 69360 Topics- by 58415 Members - Latest Member: sophi_26

April 16, 2024, 12:44:00 AM

Need hosting? Check out Digital Ocean
(more details in this thread)
TIGSource ForumsDeveloperTechnical (Moderator: ThemsAllTook)Beautiful fails.
Pages: 1 ... 62 63 [64] 65 66 67
Print
Author Topic: Beautiful fails.  (Read 340945 times)
Perfoon
Level 0
**



View Profile
« Reply #1260 on: March 23, 2019, 02:07:37 PM »

I wanted to make a time-lapse gif renderer for my game (Dwarf Block). This is the result. Apparently, my game is too colorful for that.
Logged

Working on a game Dwarf Block (DevLog)
FrankForce
Level 2
**


This tepid water is tasteless.


View Profile WWW
« Reply #1261 on: April 01, 2019, 06:42:43 PM »

Was working on my js1k demo "Infinite Yin Yangs" and accidentally make it a bit too recursive.



Also, when working on another js1k game "The Digit Dilemma" I introduced a cool bug that turned the map into kind of a sierpinski triangle. The crazy part is, it still generated a solvable level!

Code:
********************
* * * * * * * * * **
**  **  **  **  ** *
*   *   *   *   *  *
****    ****    ****
* *     * *     * **
**      **      ** *
*       *       *  *
******** 1      ****
* * * *         * **
**  **          ** *
*   *    1      *  *
****            ****
* *             * **
**              ** *
*               *  *
******* ********   *
* * * * * * * *    *
**  ** ☻**  **     *
********************
« Last Edit: April 03, 2019, 09:20:49 PM by FrankForce » Logged
JobLeonard
Level 10
*****



View Profile
« Reply #1262 on: April 02, 2019, 03:01:27 AM »

Quote
accidentally make it a bit too recursive.
unpossible
Logged
nova++
Level 4
****


Real life space alien (not fake)


View Profile
« Reply #1263 on: April 03, 2019, 01:27:14 PM »

Working out a new line-drawing shader (my first real experience dealing with screen-space stuff like this, I guess?) for orbit lines and stuff has been... pretty.







Logged

Ordnas
Level 10
*****



View Profile WWW
« Reply #1264 on: April 05, 2019, 02:29:54 AM »

Math art  Tongue
Logged

Games:

Daid
Level 3
***



View Profile
« Reply #1265 on: April 30, 2019, 10:28:11 AM »


Triangle subdivision gone wrong....
Logged

Software engineer by trade. Game development by hobby.
The Tribute Of Legends Devlog Co-op zelda.
EmptyEpsilon Free Co-op multiplayer spaceship simulator
fluffrabbit
Guest
« Reply #1266 on: May 02, 2019, 12:23:42 AM »

I tested my skybox shader on regular objects and ended up with a disco room.

Logged
JobLeonard
Level 10
*****



View Profile
« Reply #1267 on: May 02, 2019, 08:42:00 AM »

Is it static or do the lines also move when moving around? (since I figure the skybox shader might respond to player orientation somehow? I dunno, I don't do 3D graphics)
Logged
fluffrabbit
Guest
« Reply #1268 on: May 02, 2019, 04:57:43 PM »

Is it static or do the lines also move when moving around? (since I figure the skybox shader might respond to player orientation somehow? I dunno, I don't do 3D graphics)
The lines are static because the vertex shader bases the cubemap texture coordinates on the vertex positions only (relative to the origin of each mesh), such that the sky looks correct only if you are dead center in the skybox. It's a different shader from what was used in the Source engine for "skybox materials" (basically portals); I don't know how that one works.

If you wanted the lines to move, you could rotate a matrix over time (on an axis that would show depth; rotations don't have to be coplanar with the surface) and pass it to the shader, then it would sample radially from different parts of the cubemap.
« Last Edit: May 02, 2019, 05:06:00 PM by fluffrabbit » Logged
fluffrabbit
Guest
« Reply #1269 on: August 09, 2019, 04:07:31 PM »

A single corrupted skybox face creates a massive wall.

Logged
JobLeonard
Level 10
*****



View Profile
« Reply #1270 on: August 09, 2019, 10:54:52 PM »

Nice bit of moire too
Logged
fluffrabbit
Guest
« Reply #1271 on: August 10, 2019, 12:11:20 AM »

Nice bit of moire too

I should have recognized it as a data alignment issue. OpenGL expects all cubemap faces to be in the same texture format because it puts the data into a single texture, so if one of the faces has an alpha channel while the other faces don't, it will load that patch of texture as 3 channels when there are actually 4, throwing out 25% of the data and screwing up where the RGB values are.
Logged
Ordnas
Level 10
*****



View Profile WWW
« Reply #1272 on: August 10, 2019, 12:13:30 PM »

A single corrupted skybox face creates a massive wall.



I thought it was a fan-made game based on 2001: A Space Odyssey  Tongue
Logged

Games:

fluffrabbit
Guest
« Reply #1273 on: August 10, 2019, 12:52:58 PM »

Something to do with space. Jeez, I guess I should stop working on Cave Confectioner. Folks around here seem to love 3D stuff.
Logged
oahda
Level 10
*****



View Profile
« Reply #1274 on: September 06, 2019, 04:15:32 AM »





Logged

fluffrabbit
Guest
« Reply #1275 on: September 06, 2019, 06:41:22 AM »

There is no way that smoky sky was an accident.
Logged
oahda
Level 10
*****



View Profile
« Reply #1276 on: September 06, 2019, 07:46:58 AM »

not so much a complete accident as just cranking the cloud distortion up way too high Tongue
Logged

ProgramGamer
Administrator
Level 10
******


aka Mireille


View Profile
« Reply #1277 on: September 06, 2019, 08:23:26 AM »

I want to listen to lofi beats for studying while that gif plays over and over
Logged

JobLeonard
Level 10
*****



View Profile
« Reply #1278 on: September 06, 2019, 02:26:37 PM »

Barry Sonnenfeld in Evil Dead II vibes
Logged
oahda
Level 10
*****



View Profile
« Reply #1279 on: September 13, 2019, 02:50:15 AM »

 Cheesy so that's how to make a horror game then?

Got some new ones...

This happened trying to fix some incorrect matrices:



This isn't really a fail as it was intentional to clearly see that my snow shader was working by making it green and thick and in every direction and on everything, but still amusing:

Logged

Pages: 1 ... 62 63 [64] 65 66 67
Print
Jump to:  

Theme orange-lt created by panic