Page 2 of 2

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Sat Nov 24, 2018 19:54
by Lone_Wolf
This mod is epic! The furnace has a little trouble though (The face should be facing you when placed). And if you change your view (f7) enough you'll get this:
Image

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Sat Nov 24, 2018 20:13
by Lone_Wolf
Lava didn't like being 2d.
Suggestion: Allow buckets to pick up flowing lava like regular lava
Image

Re: [Mod] Minetest 2D 2.5 [mt2d]

Posted: Sun Nov 25, 2018 10:21
by AiTechEye
i dont think there is support in minetest to change the players view like that, but if it was i would do that instead of attaching the players to a floating object.

but it should look better now

Image
Image

Re: [Mod] Minetest 2D 2.5 [mt2d]

Posted: Sun Nov 25, 2018 17:05
by DELTA_FORCE
Great job! Maybe have the option to zoom out, have more support for torches, and have the player have the option to move the mouse cursor, as playing as the camera is hard.

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Sun Dec 02, 2018 19:31
by Andrey01
I`ve just tested this mod and found significant bug: if pressing "W" a player will be jumping infinitely up. Question: why does it happen?

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Mon Dec 03, 2018 00:21
by Lone_Wolf
Andrey01 wrote:I`ve just tested this mod and found significant bug: if pressing "W" a player will be jumping infinitely up. Question: why does it happen?
To jump in this game you hold down W. To jump in 3d minetest you hold down [SPACE]

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Mon Dec 03, 2018 11:04
by AiTechEye
because players can jump when its y velocity is 0

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Sat Dec 08, 2018 17:19
by trev
AiTechEye,

So players can jump if they are not moving vertically? Physically, something must instantaneously stop before changing directions. As you jump, your vertical speed is roughly quadratic, correct? So there must be a point of inflection when the player has an instantaneous y-speed of 0. Does the Minetest engine assume that this never happens except when standing on solid ground?

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Sat Dec 08, 2018 17:38
by trev
This is sooooo cool!

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Sat Dec 08, 2018 20:39
by AiTechEye
i made it in that way because of this:

when you hold up (jump) and the y velocity is 0, it sets to 8, simple.

you can requere a walkable node under to jump, but it will only allow you to jump if you stand over it, and diallow you to jump on odd blocks and entitys.
and it's also unnecessary to put such a limitation because the only required to jump are that you aren't flying or falling, right?

due the heavy acceleration the engine should turn the positive velocity to negative because you starts falling directly, or if not it's a very little chance to the entity to catch just that moment before the velocity changes down,

and thanks everyone for trying the mod :)

Image
Image

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Wed May 22, 2019 19:46
by Extex
Could you please update to support 5.0.0
I have a world that I've been playing but on 5.0.0 it just crashes the whole program

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Thu May 23, 2019 10:38
by AiTechEye
fixed, it was caused by an odd block

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Fri May 24, 2019 18:36
by Extex
Re-download

2019-05-24 11:33:37: ACTION[Server]: singleplayer [127.0.0.1] joins game.
2019-05-24 11:33:37: ACTION[Server]: singleplayer joins game. List of players: singleplayer

And then it crashes
Same thing

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Sat May 25, 2019 15:48
by AiTechEye

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Mon Jun 03, 2019 18:46
by doyousketch2
nice, but camera centering is too aggressive.
feels like view is going into epileptic seizures at times.

entities.lua : lines 193 - 198, change from *0.9 to *0.99

Code: Select all

		if tyaw>0.5 or (npointable and tyaw>0.2) then
			self.user:set_look_yaw(3.14+((yaw-4.71)*0.99))

		elseif tpitch>0.5 or (npointable and tpitch>0.2) then
			self.user:set_look_pitch((pitch*0.99)*-1)
		end

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Mon Jun 03, 2019 18:50
by doyousketch2
to explain:

it reduces amount that the camera tries to change view each step

instead of moving 10 % of the distance each time, it only moves 1 %

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Wed Jun 05, 2019 20:52
by doyousketch2
Camera seems to be better. I like that it doesn't try to autocenter any more. Here are a few notes I wrote down while playing:

better pick to begin with. you spend way too long digging to find steel

more ores. hard to find.

bigger cobble stacks: 999

prot'tool & screwdriver don't do anything.

inventory 'sethome' only chimes. doesn't return you to position.

thicker dirt layer, 6 nodes.
every player will come along and skim dirt to make a garden.
soon all unowned land, outward from spawn, will be barren.

super glowglass. mese is too hard to find for meselamps.

sometimes the player keeps flying beyond intended location
seems to be missing velocity check, maybe due to lag?

/home retuned to home, but player-view was stuck inside object-plane.

fast priv is increasingly useful,
because you have to travel so far for resources.

mods could be forked to use in 2D:
-----------------------------------------
anvil
gravel seive

farming seeds, scan down 1 node
to look for tilled & watered ground, so you can plant in air,
instead of trying to target that thin sliver of 2D space.

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Fri Jun 14, 2019 10:36
by Miniontoby
My minetest crashes everytime with this mod (I think there happen the same thing as "Extex" viewtopic.php?f=11&t=20994&p=349420#p347737)

Re: [Mod] Minetest 2D 2 [mt2d]

Posted: Sat Jun 15, 2019 18:51
by AiTechEye
still hasen't solved it yet...

but the only thing you can do is by change the join/start dalay before you become attached to the camra, i wont change this in the mod to more, cuz it will make people have to wait secunds before the can play after they joins.

players joins the mod from here, you can try by change the number "2" to somthing bigger
https://github.com/AiTechEye/mt2d/blob/ ... #L220-L226

and here is the problem line, when you becomes attached
https://github.com/AiTechEye/mt2d/blob/ ... t.lua#L146

Re: [Mod] Minetest 2D 2.7 [mt2d]

Posted: Fri Mar 04, 2022 07:24
by Tim790
Make it compatible with all games.