Working on 16.0.0 #53

Merged
rayaman merged 120 commits from v16.0.0 into master 2024-02-25 00:00:51 -05:00
2 changed files with 15 additions and 18 deletions
Showing only changes of commit 0e6c30b478 - Show all commits

View File

@ -3,7 +3,7 @@ function love.conf(t)
t.version = "12.0" -- The LOVE version this game was made for (string) t.version = "12.0" -- The LOVE version this game was made for (string)
t.console = true -- Attach a console (boolean, Windows only) t.console = true -- Attach a console (boolean, Windows only)
t.window.title = "GuiManagerTest" -- The window title (string) t.window.title = "MultiThreadTest" -- The window title (string)
t.window.icon = nil -- Filepath to an image to use as the window's icon (string) t.window.icon = nil -- Filepath to an image to use as the window's icon (string)
t.window.width = 1280 -- The window width (number) t.window.width = 1280 -- The window width (number)
t.window.height = 720 -- The window height (number) t.window.height = 720 -- The window height (number)
@ -21,19 +21,19 @@ function love.conf(t)
t.window.x = nil -- The x-coordinate of the window's position in the specified display (number) t.window.x = nil -- The x-coordinate of the window's position in the specified display (number)
t.window.y = nil -- The y-coordinate of the window's position in the specified display (number) t.window.y = nil -- The y-coordinate of the window's position in the specified display (number)
t.modules.audio = true -- Enable the audio module (boolean) t.modules.audio = false -- Enable the audio module (boolean)
t.modules.event = true -- Enable the event module (boolean) t.modules.event = false -- Enable the event module (boolean)
t.modules.graphics = true -- Enable the graphics module (boolean) t.modules.graphics = false -- Enable the graphics module (boolean)
t.modules.image = true -- Enable the image module (boolean) t.modules.image = false -- Enable the image module (boolean)
t.modules.joystick = true -- Enable the joystick module (boolean) t.modules.joystick = false -- Enable the joystick module (boolean)
t.modules.keyboard = true -- Enable the keyboard module (boolean) t.modules.keyboard = false -- Enable the keyboard module (boolean)
t.modules.math = true -- Enable the math module (boolean) t.modules.math = false -- Enable the math module (boolean)
t.modules.mouse = true -- Enable the mouse module (boolean) t.modules.mouse = false -- Enable the mouse module (boolean)
t.modules.physics = true -- Enable the physics module (boolean) t.modules.physics = false -- Enable the physics module (boolean)
t.modules.sound = true -- Enable the sound module (boolean) t.modules.sound = false -- Enable the sound module (boolean)
t.modules.system = true -- Enable the system module (boolean) t.modules.system = false -- Enable the system module (boolean)
t.modules.timer = true -- Enable the timer module (boolean) t.modules.timer = false -- Enable the timer module (boolean)
t.modules.window = true -- Enable the window module (boolean) t.modules.window = false -- Enable the window module (boolean)
t.modules.thread = true -- Enable the thread module (boolean) t.modules.thread = true -- Enable the thread module (boolean)
end end
--1440 x 2560 --1440 x 2560

View File

@ -1,5 +1,2 @@
require("threadtests") require("threadtests")
-- Allows you to run "love tests" which runs the tests
function love.update()
end