Search found 4 matches

by slickytree
Tue Sep 12, 2017 12:21 pm
Forum: Support and Development
Topic: way to make the window forcefully open?
Replies: 5
Views: 3401

Re: way to make the window forcefully open?

It's not possible to make a window that doesn't close "no matter what you do". You could probably make it harder than usual with some ffi trickery. But it would be system dependent, and frankly. it sounds pretty much like asshole design. Nobody wants a program that behaves like that. yes,...
by slickytree
Tue Sep 12, 2017 8:16 am
Forum: Support and Development
Topic: way to make the window forcefully open?
Replies: 5
Views: 3401

way to make the window forcefully open?

im trying to make some kind of window that doesnt close no matter what you do unless you hold a certain button. is there some kind of love function that makes the window forcefully open by itself or is it just not possible? code i have so far: love.window.setFullscreen(true) local t = 0 function lov...
by slickytree
Fri May 19, 2017 11:27 am
Forum: Support and Development
Topic: how do i spawn multiple objects by clicking
Replies: 2
Views: 2454

how do i spawn multiple objects by clicking

i tried making it but what just simply happens is that an object spawns and it moves to my mouse's position whenever i click. i think another object is made when i click but the position of the other object updates as well. so it basically just looks like 1 object moving to the mouse's position when...