Search found 56 matches

by freeve4h
Mon May 23, 2022 9:00 pm
Forum: General
Topic: What's everyone working on? (tigsource inspired)
Replies: 1792
Views: 1529434

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

im making stuff
by freeve4h
Mon May 23, 2022 8:13 pm
Forum: Games and Creations
Topic: A Platformer game i made
Replies: 17
Views: 5462

Re: A Platformer game i made

Not bad at all! Fullscreen doesn't work for me though. It just displays at the same size at the top right of a fullscreen window. OP probably should something like https://github.com/Vovkiv/resolution_solution, just saying :) Yea just keep suggesting libraries for trivial tasks. This is absolute ov...
by freeve4h
Mon May 23, 2022 8:05 pm
Forum: Games and Creations
Topic: A Platformer game i made
Replies: 17
Views: 5462

Re: A Platformer game i made

marclurr wrote: Mon May 23, 2022 7:34 am Not bad at all! Fullscreen doesn't work for me though. It just displays at the same size at the top left of a fullscreen window.
its not just you, i was a bit lazy on that option
by freeve4h
Sun May 22, 2022 4:20 pm
Forum: Games and Creations
Topic: A Platformer game i made
Replies: 17
Views: 5462

Re: A Platformer game i made

I just added more Levels! and renamed it to "reach to space". gameplay video is coming soon
by freeve4h
Sun May 22, 2022 3:27 pm
Forum: Games and Creations
Topic: A Platformer game i made
Replies: 17
Views: 5462

Re: A Platformer game i made

BrotSagtMist wrote: Sun May 22, 2022 2:48 pm You really love painful games eh? :D
welcome to my torture room, just stay away from that cage.
by freeve4h
Sun May 22, 2022 10:40 am
Forum: Games and Creations
Topic: A Platformer game i made
Replies: 17
Views: 5462

Re: A Platformer game i made

rabbitboots wrote: Sun May 22, 2022 5:58 am Good stuff -- is there anything beyond the ninth screen? I can't quite make that jump. In any case, I didn't hit any bugs on the way there.
there is nothing on that screen, the game only has 8 levels right now
by freeve4h
Sat May 21, 2022 11:53 pm
Forum: Games and Creations
Topic: A Platformer game i made
Replies: 17
Views: 5462

A Platformer game i made

I made game. that is all you really need to know... this is the first game that i made that has a good menu (good is relative)... .love file Reach to Space.love the jumping still needs some work... if there are any bugs, please tell me. CONTROLS: Menu: left or d or enter is select right or a is back...
by freeve4h
Thu May 19, 2022 12:43 pm
Forum: Games and Creations
Topic: getting to the goal
Replies: 16
Views: 8069

Re: getting to the goal

1.7 is out, with MY EYES mode and more levels
by freeve4h
Wed May 18, 2022 4:51 pm
Forum: Support and Development
Topic: love.filesystem.write() returning as nil?
Replies: 4
Views: 1975

Re: love.filesystem.write() returning as nil?

that helps, but the file still is empty Make sure that you can write data into that folder. (maybe it was set as read-only for some reasons?) Because for me, on linux system with Fedora and love 11.4 everything works fine: Screenshot from 2022-05-18 13-17-43.png local data = "test test foo bar...
by freeve4h
Wed May 18, 2022 10:06 am
Forum: Support and Development
Topic: love.filesystem.write() returning as nil?
Replies: 4
Views: 1975

Re: love.filesystem.write() returning as nil?

im making a game, and im trying to program a save system into it im using success = love.filesystem.write( name, data, size ) and print(success) love.filesystem.write("saves/save.txt", "hello") is returning as nil, and the .txt file is blank, is there a way to fix this? From wik...