Thanks a lot! I'll try that. Ofcourse I kinda figured the strings were the problem, but I couldn't for the life of me figure out how to solve it another way, except for using a million if's.
Hi guys, I'm having a little trouble with playing sounds and I hope you can help me out. The following works fine: saythisnumber = love.audio.newSource("audio/0.mp3", "static") love.audio.play(saythisnumber) But this piece of code if numbertosay == 0 then saythisnumber = love.aud...
Ok, I tried it with the following code now: function love.load() soundone = love.audio.newSource("pingon.wav", "static") soundtwo = love.audio.newSource("pingoff.wav", "static") end function love.draw() love.graphics.print("Hello World", 400, 300) en...
First of all: Hello everyone! I'm new to LÖVE and this forum. I plan on using LÖVE for a little hobby project I started. I want to build a voice controlled system that will (eventually...) automate as much of my home as possible. There are commercial programs that will allow you to do this, but I wa...