Animations in Love.

Questions about the LÖVE API, installing LÖVE and other support related questions go here.
Forum rules
Before you make a thread asking for help, read this.
User avatar
Roland_Yonaba
Inner party member
Posts: 1563
Joined: Tue Jun 21, 2011 6:08 pm
Location: Ouagadougou (Burkina Faso)
Contact:

Re: Animations in Love.

Post by Roland_Yonaba »

I guess it is because of this:

Code: Select all

require(anal)
This function is supposed to load and run some code from a file.What you pass to require is a string, correponding to the path where this file is located. In your code, Lua considers that anal is a variable, and not a string. It would have worked if you did have previously assign a string value to this variable.

So, if the file you want to call is named "anal.lua", and located at the root of your base folder, just to it this way:

Code: Select all

require("anal")
The ".lua" is not needed, as require adds it automatically.
See require
Post Reply

Who is online

Users browsing this forum: No registered users and 76 guests