[Game] BlockColor

Games that have been abandoned and no longer work properly with the latest version of Minetest.
Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:29, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:29, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:29, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:28, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:28, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:28, edited 4 times in total.

User avatar
LMD
Member
Posts: 1386
Joined: Sat Apr 08, 2017 08:16
GitHub: appgurueu
IRC: appguru[eu]
In-game: LMD
Location: Germany
Contact:

Re: [Games] BlockColor

by LMD » Post

Just use this Blender Plugin : https://github.com/minetest/B3DExport
If you need help, ask in "Blender Discussion" in MT Discord.
My stuff: Projects - Mods - Website

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:27, edited 1 time in total.

Kroukuk
Member
Posts: 53
Joined: Tue Feb 27, 2018 18:08
In-game: Kroukuk

Re: [Games] BlockColor

by Kroukuk » Post

LMD wrote:Just use this Blender Plugin : https://github.com/minetest/B3DExport
If you need help, ask in "Blender Discussion" in MT Discord.
I converted the file with the plugin LMD suggested but I'm not sure how to test if it actually worked ^^'
Attachments
Animated_Human.b3d.zip
(522.8 KiB) Downloaded 96 times

User avatar
LMD
Member
Posts: 1386
Joined: Sat Apr 08, 2017 08:16
GitHub: appgurueu
IRC: appguru[eu]
In-game: LMD
Location: Germany
Contact:

Re: [Games] BlockColor

by LMD » Post

Well I guess you would also have to rename the animations in Blender...
My stuff: Projects - Mods - Website

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:27, edited 1 time in total.

Kroukuk
Member
Posts: 53
Joined: Tue Feb 27, 2018 18:08
In-game: Kroukuk

Re: [Games] BlockColor

by Kroukuk » Post

Chiantos wrote:
LMD wrote:Well I guess you would also have to rename the animations in Blender...
Hello, Minetest not use animation name blender, i think, not sure (irlich bug ?) , only position Time animations for use animations, i think.

The Model work, i have Actually 3 problems :

_ Model Player rotate 180 , when i go move right ... Model go left. Possible rotate 180 ?
_ Model Player is one block Up y +1 , Possible to align to bottom y 0 ?
_ Possible give me position Time for animations (x and y) ?

After file work, not problem with model, only for position Up and bad rotate.

Thank for test Help me. Good Day.
I rotated the model an moved it down to -1 (because it already is on z=0 in blender)
I'm not sure what you mean with the third question though? The animations are from frame 0 to 240. c:
Attachments
Animated_Human2.b3d.zip
(524.01 KiB) Downloaded 97 times

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:27, edited 1 time in total.

User avatar
LMD
Member
Posts: 1386
Joined: Sat Apr 08, 2017 08:16
GitHub: appgurueu
IRC: appguru[eu]
In-game: LMD
Location: Germany
Contact:

Re: [Games] BlockColor

by LMD » Post

I think there is no x and y, but animation names : for example, a normal player model has got Stand animation with Stand_START and Start_END, but also Mine, Lay, Walk and Walkmine.
My stuff: Projects - Mods - Website

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:26, edited 1 time in total.

Kroukuk
Member
Posts: 53
Joined: Tue Feb 27, 2018 18:08
In-game: Kroukuk

Re: [Games] BlockColor

by Kroukuk » Post

Chiantos wrote: Example Player.Lua

Code: Select all

-- Default player appearance
default.player_register_model("character2.b3d", {
	animation_speed = 60,
	textures = {"character.png", },
	animations = {
		-- Standard animations.
		 stand     = { x= 0, y= 0, },
		lay       = { x=0, y=0, },
		walk      = { x=10, y=70, },
		mine      = { x=80, y=120, },
		walk_mine = { x=0, y=0, },
		sit       = { x= 130, y=270, }, 
	},
})
okay I moved all animations into one animation so the frames should be:
jump: x=0 y=24
idle: x=26 y=266
punch: x=268 y=292
walk: x=295 y=320
(I didn't remove the original animations so this could cause problems)

The model doesn't have a lay, sit or walk_mine animation but it has additional death run and work animations


I also moved the model to z=-2 so you can try if it fits now? ^^
Attachments
Animated_Human3.b3d.zip
(599.58 KiB) Downloaded 95 times

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:26, edited 1 time in total.

Kroukuk
Member
Posts: 53
Joined: Tue Feb 27, 2018 18:08
In-game: Kroukuk

Re: [Games] BlockColor

by Kroukuk » Post

Chiantos wrote: Hello, Thank for your help, i go test .... What is x and y for death run and work animations ?
run: x=322 y=338
death: x=339 y=424
work: x=426 y=581
Chiantos wrote: Edit : Animations Work, Thank ;) Only Actually problem now, position. Thank for your help.

-z 2 Result :

Image

-2.5 or -3 , i think. You can test with game for look result in tests, i think. I go update Github.
I moved it down to -3 since it still looks really high
Chiantos wrote: When finish, you can give me .blend files so ?
Sure
Chiantos wrote: I think Add your name in helpers. Very Thank.

Good day.
Uh I didn't do so much though :o Thank you
Attachments
Animated_Human4.b3d.zip
(524.11 KiB) Downloaded 96 times

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:26, edited 1 time in total.

Kroukuk
Member
Posts: 53
Joined: Tue Feb 27, 2018 18:08
In-game: Kroukuk

Re: [Games] BlockColor

by Kroukuk » Post

Chiantos wrote:
-2.5, i think. Animations disabled ?

You have very help me, i cant use blender ... ;)
Maybe now? -2,5
Attachments
Animated_Human5.b3d.zip
(836.59 KiB) Downloaded 102 times

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:25, edited 1 time in total.

User avatar
LMD
Member
Posts: 1386
Joined: Sat Apr 08, 2017 08:16
GitHub: appgurueu
IRC: appguru[eu]
In-game: LMD
Location: Germany
Contact:

Re: [Games] BlockColor

by LMD » Post

So if I got you right animations are now working ?
+100000
Very good job Kroukuk.
I assume you are familiar with Blender ?
My stuff: Projects - Mods - Website

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:25, edited 1 time in total.

Chiantos
Member
Posts: 377
Joined: Sun Jan 15, 2017 09:04

Re: [Games] BlockColor

by Chiantos » Post

Deleted message
Last edited by Chiantos on Mon Sep 30, 2019 06:25, edited 1 time in total.

Kroukuk
Member
Posts: 53
Joined: Tue Feb 27, 2018 18:08
In-game: Kroukuk

Re: [Games] BlockColor

by Kroukuk » Post

LMD wrote: I assume you are familiar with Blender ?
Uh i guess you could say so.
Not professionally though. I only watched a lot of tutorials XD

Post Reply

Who is online

Users browsing this forum: No registered users and 2 guests