Search found 90 matches

by Ortimh
Thu Sep 18, 2014 1:36 pm
Forum: General
Topic: LOVE users map
Replies: 182
Views: 118190

Re: LOVE users map

Abepura, Jayapura, Papua, Indonesia.
by Ortimh
Thu Sep 18, 2014 1:28 pm
Forum: Support and Development
Topic: infinite jumper
Replies: 5
Views: 3229

Re: infinite jumper

Well, I don't understand of what you said. Do you want to camera always go up and player must follow the camera or the camera must follow the player? Are the objects the platform to jump? If the objects is then your objects doesn't need collision and moving slower when on the ground actually. You sh...
by Ortimh
Sun Sep 14, 2014 12:30 pm
Forum: Support and Development
Topic: "Questions that don't deserve their own thread" thread
Replies: 905
Views: 410755

Re: "Questions that don't deserve their own thread" thread

bartbes wrote:Kind of, but mostly because you tell it to create a rar file, and not a zip file.
Yeah, that fixed my problem. Thanks, bartbes.
by Ortimh
Sun Sep 14, 2014 9:50 am
Forum: Support and Development
Topic: "Questions that don't deserve their own thread" thread
Replies: 905
Views: 410755

Re: "Questions that don't deserve their own thread" thread

hmm? well, you forgot to end the function love.draw... And with your new amazing 3 lines of code, that was 2. And that's it for me. This works for me, I can see the text displayed. All I added was the "end" to end the love.draw function fix.love If it doesn't show the text for you, than I...
by Ortimh
Sun Sep 14, 2014 9:15 am
Forum: Support and Development
Topic: "Questions that don't deserve their own thread" thread
Replies: 905
Views: 410755

Re: "Questions that don't deserve their own thread" thread

Zilarrezko, here. The file doesn't open with my installed LÖVE.
by Ortimh
Sun Sep 14, 2014 7:13 am
Forum: Support and Development
Topic: Error when mirroring image?
Replies: 5
Views: 5222

Re: Error when mirroring image?

Give the code that creates the error for better understanding of your problem.
by Ortimh
Sun Sep 14, 2014 4:29 am
Forum: Support and Development
Topic: "Questions that don't deserve their own thread" thread
Replies: 905
Views: 410755

Re: "Questions that don't deserve their own thread" thread

Same as ELFUERTE, I can't open my own *.love file using LÖVE program. I'm putting the main.lua at the root of directory. I'm using WinRAR to create *.love file. Is WinRAR the problem or I need to create conf.lua to make it works?
by Ortimh
Sun Sep 14, 2014 3:37 am
Forum: Support and Development
Topic: Is it possible to set the size of an image?
Replies: 2
Views: 2468

Re: Is it possible to set the size of an image?

I think it impossible to change the size of an image within LÖVE. But using scale will do like you want to: function setImageSize(image, x, y) return x / image:getWidth(), y / image:getHeight() end Example, if your image dimensions is 64 x 64 pixels then you want to resize it to 32 x 32 pixels: loca...
by Ortimh
Fri Sep 12, 2014 11:22 am
Forum: Support and Development
Topic: Checking if an entity is in a table.
Replies: 3
Views: 3131

Re: Checking if an entity is in a table.

Code: Select all

function ent.getID(name)
	for index, entity in pairs(ent) do
		if (entity.name == name) then
			return entity.id
		end
	end
end
Without using hard-coded code, just check if current entity name in for loop is the name that wanted to find, if it is then return the ID.
by Ortimh
Wed Sep 10, 2014 10:12 am
Forum: Support and Development
Topic: Camera follows mouse and player
Replies: 3
Views: 3399

Camera follows mouse and player

Hello, guys. Recently I am having trouble by making camera following mouse position but it follows the player too and the player must be in the camera. If the player moves, the camera will follow the player. If the mouse moves, the camera will follow the mouse. If the player and the mouse moves at t...