Search found 872 matches

by veethree
Sun Aug 06, 2023 1:24 pm
Forum: Support and Development
Topic: Install Love2D to Raspberry Pi 400
Replies: 21
Views: 5951

Re: Install Love2D to Raspberry Pi 400

Open your terminal and do

Code: Select all

sudo apt update
sudo apt install love
by veethree
Sun Aug 06, 2023 9:48 am
Forum: Games and Creations
Topic: Number Game
Replies: 4
Views: 5403

Re: Number Game

Rigachupe wrote: Sun Aug 06, 2023 6:08 am
veethree wrote: Sat Aug 05, 2023 8:55 pm Number Game
NumberGame.png

Play store
Github
How did you pack the game into apk? I recently tried to use 2 of the existing solution found on the web and none worked. You use the recent 11.4 or 11.3 version of löve api?
Android studio. There are instructions here.
by veethree
Sat Aug 05, 2023 11:20 pm
Forum: Libraries and Tools
Topic: 13 line class module
Replies: 2
Views: 5649

13 line class module

local mt = {__index = function(self, key) return self.__baseClass[key] end, __call = function(self, ...) return self:new(...) end} local class = setmetatable({ __baseClass = {}, __type = "class" }, mt) function class:new(...) local arg, cls = {...}, {__baseClass = self} setmetatable(cls, ...
by veethree
Sat Aug 05, 2023 8:55 pm
Forum: Games and Creations
Topic: Number Game
Replies: 4
Views: 5403

Number Game

Number Game
NumberGame.png
NumberGame.png (57.2 KiB) Viewed 5403 times
Play store
Github
by veethree
Tue Apr 18, 2023 12:52 pm
Forum: General
Topic: I Redesigned Löve's logo in 3D Software
Replies: 9
Views: 5569

Re: I Redesigned Löve's logo in 3D Software

Yee the heart should be flat. The spike shadow on it looks weird. Also making heart shapes is easy, if you havent found it yet: Blender has a mirror mode that autcompletes symetrical objects. And then make it a bezier curve instead a plane. I thought it looked kinda boring when the heart was flat. ...
by veethree
Tue Apr 18, 2023 11:58 am
Forum: General
Topic: I Redesigned Löve's logo in 3D Software
Replies: 9
Views: 5569

I Redesigned Löve's logo in 3D Software

You know that one guy on youtube who redisigns logos in 3d software? Well i've been playing around with blender lately and decided to attempt to redesign löves logo in 3d software. Here are the results. This was my first attempt, The background is a subdivided cube, And the heart is a plane i subdiv...
by veethree
Wed Mar 16, 2022 9:20 am
Forum: Support and Development
Topic: Error
Replies: 1
Views: 2972

Re: Error

There's a dot instead of a comma after the first argument of distanceBetween call on line 40.
by veethree
Fri Feb 25, 2022 9:01 pm
Forum: Support and Development
Topic: Convert Shaders to Love2D Shaders
Replies: 2
Views: 2833

Re: Convert Shaders to Love2D Shaders

shader = love.graphics.newShader[[ extern vec2 iResolution; vec4 effect (vec4 color, Image texture, vec2 texture_coords, vec2 screen_coords) { vec2 uv = screen_coords/iResolution.xy; vec2 pos = 0.5 - uv; pos.y /= iResolution.x/iResolution.y; float dist = 1.0/length(pos); dist *= 0.1; dist = pow(dis...
by veethree
Fri Feb 25, 2022 12:42 pm
Forum: Support and Development
Topic: Port love2d to a webrowser
Replies: 1
Views: 2360

Re: Port love2d to a webrowser

You can port Löve games for the web using love.js
by veethree
Thu Feb 24, 2022 12:05 pm
Forum: General
Topic: Is there ever a "correct" set of way to make a game?
Replies: 13
Views: 10323

Re: Is there ever a "correct" set of way to make a game?

You and i are not so different. I also like to understand what everything in my game does, As a result i rarely use third party libraries and instead design my own. As a direct result of this, I have very few actual finished "games" under my belt, But a ton of prototypes and half finished ...