mirror of
https://github.com/love2d/love.git
synced 2026-08-12 08:30:56 +02:00
2875a96e92
- update main love readme to include note on tests - added module tests for Sensor, Keyboard, Touch, Joystick, Mouse, and Love (for hooks + basic love-level methods) - general clean-up of main class logic - couple fixes for runner-specific failures (physics.Joint, audio.getActiveSourceCount, mouse.getPosition) - change window.close test to run last
9 lines
177 B
Lua
9 lines
177 B
Lua
function love.conf(t)
|
|
t.console = true
|
|
t.window.name = 'love.test'
|
|
t.window.width = 360
|
|
t.window.height = 240
|
|
t.window.resizable = true
|
|
t.renderers = {"opengl"}
|
|
end
|