Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/subsoap/aurl

Automatic URL for Defold
https://github.com/subsoap/aurl

Last synced: about 1 month ago
JSON representation

Automatic URL for Defold

Awesome Lists containing this project

README

        

# AURL

Automatic URL for Defold

https://github.com/subsoap/aurl/archive/master.zip

Require it locally or globablly if you wish to have it available in your entire project.

```local aurl = require("aurl.aurl")```

```aurl = require("aurl.aurl")```

AURL allows you to create URLs in a single place and then reuse them instead of creating new URLs every frame. Each URL is only created once the first time it is referenced.

```
if (aurl["/aurl"] == msg.url("/aurl")) then
print("It works!")
end
```