Search found 12 matches

by Tonmoy Mojumder
Sun Nov 12, 2023 1:33 pm
Forum: General
Topic: Are you using anim8 for animation?
Replies: 5
Views: 10295

Re: Are you using anim8 for animation?

How do you handle animation?I handle with true or false.But it is not a good way.Because It repeats everytime . I cloned your strike project: In the assets IMAGE[enum.imageSheetBattleshipSinking] = love.graphics.newImage("assets/images/battleshipsinkingsheet.png") F The picture is missing.
by Tonmoy Mojumder
Fri Nov 10, 2023 5:03 pm
Forum: General
Topic: Are you using anim8 for animation?
Replies: 5
Views: 10295

Re: Are you using anim8 for animation?

Here is sample code.I hoping someone to help _G.love = require("love") function love.load() ani8 = require("lib.anim8.anim8") player = {} player.x = 100 player.y = 100 player.image = love.graphics.newImage('assets/spritesheet.png') player.grid = ani8.newGrid(332,275,2656,1925) --...
by Tonmoy Mojumder
Fri Nov 10, 2023 5:01 pm
Forum: General
Topic: Are you using anim8 for animation?
Replies: 5
Views: 10295

Are you using anim8 for animation?

I am learning animation with anim8.I know about grid,animation.I code in a way that it plays infinite loop with true or false value.I want to how how to set in such a way to perform animation for once.Can anyone share sample anim8 frame project with me ?I want to learn the basic of frames and key ev...
by Tonmoy Mojumder
Fri Nov 10, 2023 4:57 pm
Forum: Games and Creations
Topic: Medieval Zombie Dungeon Crawler
Replies: 12
Views: 81271

Re: Medieval Zombie Dungeon Crawler

which animation engine are you using?
by Tonmoy Mojumder
Tue Nov 07, 2023 1:43 pm
Forum: General
Topic: windfield doesn't detect sensor object collision?
Replies: 5
Views: 5798

Re: windfield doesn't detect sensor object collision?

Hey there before enter methodyou have add addtional code in windfield (collected from windfield wiki) function love.load() world = wf.newWorld(0, 512, true) world:addCollisionClass('Platform') world:addCollisionClass('Player') ground = world:newRectangleCollider(100, 500, 600, 50) ground:setType('st...
by Tonmoy Mojumder
Mon Nov 06, 2023 6:16 am
Forum: Games and Creations
Topic: Medieval Zombie Dungeon Crawler
Replies: 12
Views: 81271

Re: Medieval Zombie Dungeon Crawler

Looks professional
by Tonmoy Mojumder
Mon Nov 06, 2023 6:16 am
Forum: Games and Creations
Topic: Medieval Zombie Dungeon Crawler
Replies: 12
Views: 81271

Re: Medieval Zombie Dungeon Crawler

What physics engine are you using?
by Tonmoy Mojumder
Mon Nov 06, 2023 5:35 am
Forum: Support and Development
Topic: windfield physics help for enter and destroy method
Replies: 2
Views: 90351

windfield physics help for enter and destroy method

I am a newbie.I want to make a simple coin .where ball can have coins. _G.love = require("love") function love.load() w, h = love.graphics.getWidth(), love.graphics.getHeight() local wf = require("lib.windfield.windfield") world = wf.newWorld(0, 0, true) world:setGravity(0, 100) ...
by Tonmoy Mojumder
Thu Oct 26, 2023 8:19 pm
Forum: Libraries and Tools
Topic: Help for LOVE2D e-book.
Replies: 4
Views: 13466

Re: Help for LOVE2D e-book.

Thank you
by Tonmoy Mojumder
Wed Oct 25, 2023 1:37 pm
Forum: Libraries and Tools
Topic: Help for LOVE2D e-book.
Replies: 4
Views: 13466

Help for LOVE2D e-book.

Hey there! I am new to love2D and game development.Is there any free pdf e books that describes about the gaming algorithms like gravity,physics,tiles and OOP ??