What's everyone working on? (tigsource inspired)

General discussion about LÖVE, Lua, game development, puns, and unicorns.
User avatar
Alexar
Party member
Posts: 174
Joined: Thu Feb 05, 2015 1:57 am
Location: Chengdu,China

Re: What's everyone working on? (tigsource inspired)

Post by Alexar »

working on a music game by parsering midi files.
GIF.gif
GIF.gif (775.66 KiB) Viewed 10591 times
super mario3.love
love 0.11 only!!!
(14.53 KiB) Downloaded 392 times
for love 0.11 only , because the data type of imagedata generated from canvas can be float[4] not int8[4].
use d f j k 4 key to hit.

music is parsed from midi files. instrument for midi is generated by a shader.
User avatar
UnclePotatoDev
Prole
Posts: 2
Joined: Fri Dec 01, 2017 3:08 pm

Re: What's everyone working on? (tigsource inspired)

Post by UnclePotatoDev »

Something big and delicious!
Last edited by UnclePotatoDev on Sat Jun 30, 2018 9:43 am, edited 2 times in total.
User avatar
SirRanjid
Prole
Posts: 39
Joined: Sun Nov 19, 2017 1:44 pm
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by SirRanjid »

Buttons and stuff have dynamic sizes so I made the window small for a small video size...



GIF: https://love2d.org/imgmirrur/WwJOZNu.mp4
User avatar
0x25a0
Prole
Posts: 36
Joined: Mon Mar 20, 2017 10:08 pm
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by 0x25a0 »

Inspired by this album art I started to tinker around with fake 3D.

Image

Admittedly, the still image doesn't look that spectacular, but I like how it looks in motion:
https://giphy.com/gifs/xT0xeMqdKvtRsQY0P6/html5
User avatar
yetneverdone
Party member
Posts: 446
Joined: Sat Sep 24, 2016 11:20 am
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by yetneverdone »

0x25a0 wrote: Sat Dec 09, 2017 2:16 pm Inspired by this album art I started to tinker around with fake 3D.

Image

Admittedly, the still image doesn't look that spectacular, but I like how it looks in motion:
https://giphy.com/gifs/xT0xeMqdKvtRsQY0P6/html5
pretty awesome! want to learn how to make something like that
urskogshumla
Prole
Posts: 2
Joined: Thu Nov 30, 2017 8:05 pm

Re: What's everyone working on? (tigsource inspired)

Post by urskogshumla »

Code: Select all

-- init
mouse = { up = {}, pressed = {}, down = {}, released = {} }

-- update
for i = 1, 2, 1 do
    local active = love.mouse.isDown(i)
    mouse.pressed[i] = active and not mouse.down[i]
    mouse.released[i] = not active and not mouse.up[i]
    mouse.up[i] = not active
    mouse.down[i] = active
end
Hacked together a mouse button state script that I found pretty pretty ❤ Working on lua skills and interfaces.

Image

Hugs
User avatar
yetneverdone
Party member
Posts: 446
Joined: Sat Sep 24, 2016 11:20 am
Contact:

Re: What's everyone working on? (tigsource inspired)

Post by yetneverdone »

urskogshumla wrote: Sun Dec 10, 2017 4:06 am

Code: Select all

-- init
mouse = { up = {}, pressed = {}, down = {}, released = {} }

-- update
for i = 1, 2, 1 do
    local active = love.mouse.isDown(i)
    mouse.pressed[i] = active and not mouse.down[i]
    mouse.released[i] = not active and not mouse.up[i]
    mouse.up[i] = not active
    mouse.down[i] = active
end
Hacked together a mouse button state script that I found pretty pretty ❤ Working on lua skills and interfaces.

Image

Hugs
Can you elaborate more?cool btw
User avatar
Tjakka5
Party member
Posts: 243
Joined: Thu Dec 26, 2013 12:17 pm

Re: What's everyone working on? (tigsource inspired)

Post by Tjakka5 »

I'm currently working on 'Babble': A modular dialogue system that aims at being easy to customize/stylize for any kind of game.
OLYGpIs.gif
OLYGpIs.gif (984.38 KiB) Viewed 10197 times
User avatar
Alexar
Party member
Posts: 174
Joined: Thu Feb 05, 2015 1:57 am
Location: Chengdu,China

Re: What's everyone working on? (tigsource inspired)

Post by Alexar »

GIF3.gif
GIF3.gif (4.2 MiB) Viewed 10135 times
shader editor and live compile. audio/graphic/video supported and shadertoy code phaser.
vdd
Prole
Posts: 1
Joined: Mon Dec 18, 2017 8:55 am

Re: What's everyone working on? (tigsource inspired)

Post by vdd »

Working on a terminal-based network exploration game, after many attempts I finally managed to create a sensible text engine that doesn't kill efficiency :awesome:
Image
Post Reply

Who is online

Users browsing this forum: Bing [Bot] and 51 guests