Search found 5 matches

by mr_3tianne
Thu Dec 15, 2022 9:35 pm
Forum: General
Topic: Anyone got lure working? Or some other Https thingy??
Replies: 4
Views: 1492

Re: Anyone got lure working? Or some other Https thingy??

Just use the built in networking module (LuaSocket).

Code: Select all

local http = require("socket")

http.request({
	method = "GET",
	url="http://your.url/",
})
by mr_3tianne
Fri Nov 04, 2022 8:14 pm
Forum: Support and Development
Topic: [ANSWERED] What does "<Class>.super.new(self, {})" do?
Replies: 4
Views: 2893

Re: What does "<Class>.super.new(self, {})" do?

Thank you for your explanation, I think I understand what's going on now. So just to confirm, in my example of <Class>.super.new(self, {}) the blank table (or whatever the second argument is) is the argument(s) for constructing the "parent" class? :)
by mr_3tianne
Fri Nov 04, 2022 4:53 pm
Forum: Games and Creations
Topic: A 1D shooter
Replies: 7
Views: 15061

Re: A 1D shooter

Really interesting concept. Miziziziz has made a few cool videos on making games that are "outside the box" in terms of how the gameplay experience is delivered to the player, such as "How To Make A Game With No Graphics Or Visuals" ( https://www.youtube.com/watch?v=AXY7n9N7wJI )...
by mr_3tianne
Fri Nov 04, 2022 4:03 pm
Forum: Support and Development
Topic: [ANSWERED] What does "<Class>.super.new(self, {})" do?
Replies: 4
Views: 2893

[ANSWERED] What does "<Class>.super.new(self, {})" do?

Hey, I'm new(ish) to LOVE, I have a bit of background knowedge of object-oriented programming but usually with "higher-level" engines that do a lot of the heavy lifting when it comes to creating/storing/manipulating objects. I'm currently working on a project in LOVE using rxi's Classic li...