experimental pre-rendered texture for topaz block

master
Jacob Gustafson 2017-02-13 16:01:03 -05:00
parent 0416ef684c
commit e90b73fa08
17 changed files with 19 additions and 1 deletions

View File

@ -22,6 +22,8 @@ Some major changes were done to make the mod easier to maintain:
## Changes:
'!' is for bugs in 2012 version that are fixed (as opposed to features that were changed/added) in this fork
* (2017-02-13) Made multi-sided Topaz Block (WIP)
* (2017-02-13) Made Blender project for gem rendering (see Developer Notes below for usage)
* (2017-02-12) Add farming hoes
* (2017-02-11) Add recipe to create default:diamond from dye:blue + birthstones:diamond for playability (for when other mods like technic need diamonds for things)
* (2017-02-11) Add crafting recipe to convert block back into 9 gems
@ -113,6 +115,21 @@ MORE but with hardness values available from 18carat.co.uk link above:
* Apatite,3.16-3.23,5,137
* Calcite,2.69-2.71,3,53
### Developer Notes
xcf file has colors used for manual tinting
Blender Cycles project has nodes with custom labels with the following values:
* If you rotate the gems, rotation must be applied, since absorption is manually done along object z axis (see "Blender gem tutorial" link below for why)
Name,GemColor,IOR**,Scatter,Gloss,Clarity,Absorption
Topaz, E5A55F, 1.62, .5, .5, 1.0, 0.0
### Special Thanks
Blender gem tutorial
https://www.youtube.com/watch?v=3EN6mAFDqaI
by Marijus Jacevičius
Complete IOR List
** http://forums.cgsociety.org/archive/index.php?t-513458.html
## Minetest 2017 API notes
(see http://wiki.minetest.net/Groups and https://github.com/minetest/minetest/blob/142e2d3b74ad886eed83b0fc9d6cfea100dae10a/doc/lua_api.txt#L736 )

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 648 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 760 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 579 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -172,9 +172,10 @@ minetest.register_node( "birthstones:sapphireblock", {
groups = {cracky = 1, level = 3},
sounds = default.node_sound_stone_defaults(),
})
-- tile_images: +Y, -Y, +X, -X, +Z, -Z. In English: top, bottom, right, left, back, front. - http://dev.minetest.net/minetest.register_node
minetest.register_node( "birthstones:topazblock", {
description = "Topaz Block",
tile_images = { "birthstones_topaz_block.png" },
tile_images = { "birthstones_topaz_block_top.png", "birthstones_topaz_block_top.png", "birthstones_topaz_block_east.png", "birthstones_topaz_block_east.png", "birthstones_topaz_block_north.png", "birthstones_topaz_block_north.png" },
is_ground_content = true,
groups = {cracky = 1, level = 3},
sounds = default.node_sound_stone_defaults(),