Search found 9 matches

by ceana
Sat Sep 02, 2017 10:17 am
Forum: Support and Development
Topic: [SOLVED] Is touchreleased will call touchpressed again?
Replies: 1
Views: 1774

[SOLVED] Is touchreleased will call touchpressed again?

today I found that touchreleased called touchpressed again at same point. before this I never knew and saw it happened.
by ceana
Tue Aug 29, 2017 2:55 am
Forum: Support and Development
Topic: encode doesn't create file on android
Replies: 2
Views: 2641

Re: encode doesn't create file on android

Tjakka5 wrote: Mon Aug 28, 2017 4:24 pm Its possible that you can't fire the keypressed command on your device, since... well, you don't have a keyboard?
Try moving the code into love.load and see if it works then.
oh sorry, I forgot this, before I post here I had rewritten it on love.load and love.touch, and I got the same result.
by ceana
Mon Aug 28, 2017 1:02 pm
Forum: Support and Development
Topic: encode doesn't create file on android
Replies: 2
Views: 2641

encode doesn't create file on android

function love.load() love.filesystem.setIdentity('screenshot_example'); end function love.keypressed() local screenshot = love.graphics.newScreenshot(); screenshot:encode('png', os.time() .. '.png'); end I run this example but can't see the .png file on save directory on android, and there is an em...
by ceana
Thu Aug 17, 2017 7:40 am
Forum: Support and Development
Topic: [Solved] Prevent Moving While Colliding
Replies: 1
Views: 2086

[Solved] Prevent Moving While Colliding

How can I prevent the object from still moving into the detection region while colliding ? IMG_20170817_143757.png I tried to set its speed to zero when collision occurred, but it still moved by rocking the virtual joystick. I also want this result: IMG_20170817_152839.png Now I am thinking about th...
by ceana
Tue Aug 15, 2017 6:03 am
Forum: Support and Development
Topic: [Solved] Anywhere Some Examples of ECS ?
Replies: 1
Views: 1755

Re: Anywhere Some Examples of ECS ?

Oh I am a foolish fool, the component is just a subclass of the entity :crazy: I see! love myself :nyu:
by ceana
Mon Aug 14, 2017 6:02 pm
Forum: Games and Creations
Topic: Possession (formerly Possession 2) - Release Date: July 18th!
Replies: 90
Views: 128289

Re: Possession (formerly Possession 2) - Steam page up!

Oh my God I only want to say just Oh my God !
because this type is my fav :nyu:
by ceana
Mon Aug 14, 2017 4:18 pm
Forum: Support and Development
Topic: [Solved] Anywhere Some Examples of ECS ?
Replies: 1
Views: 1755

[Solved] Anywhere Some Examples of ECS ?

I am learning the entity-component-system for the first time, and try to implement in LÖVE, but I have no idea about the whole implementation. I used to use OOP coding game, the first time I saw ECS that was in the source code of Don't Starve, it interests me really, but it's big different and hard...
by ceana
Sun Aug 13, 2017 4:25 am
Forum: Support and Development
Topic: [Solved] Game Controlling Question
Replies: 4
Views: 3647

Re: [Newbie] Game Controlling Question

Thanks for everyone's help and idea!
by ceana
Sat Aug 12, 2017 3:58 pm
Forum: Support and Development
Topic: [Solved] Game Controlling Question
Replies: 4
Views: 3647

[Solved] Game Controlling Question

LÖVE has only one mousepressed callback function which is love.mousepressed, so my game's code of controllings with mouse all will put in there? Mouse controllings has varied uses in varied situations, so it's hard to manage it in one function. And the keyboard and touch are also, but at least I cou...