experimental pre-rendered texture for topaz block
17
README.md
@ -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 )
|
||||
|
BIN
etc/1.etc in GitHub minetest-birthstones.lnk
Normal file
BIN
etc/1.textures in C games Minetest ENLIVEN.lnk
Normal file
BIN
etc/alt/birthstones_topaz_block_east-32.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
etc/alt/birthstones_topaz_block_east.png
Normal file
After Width: | Height: | Size: 648 B |
BIN
etc/alt/birthstones_topaz_block_north-32.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
etc/alt/birthstones_topaz_block_north.png
Normal file
After Width: | Height: | Size: 760 B |
BIN
etc/alt/birthstones_topaz_block_top-32.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
etc/alt/birthstones_topaz_block_top.png
Normal file
After Width: | Height: | Size: 579 B |
BIN
etc/birthstones_topaz_block_east.1-32.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 6.0 KiB |
BIN
etc/birthstones_topaz_block_north.1-32.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 7.8 KiB |
BIN
etc/birthstones_topaz_block_top.1-32.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 7.9 KiB |
@ -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(),
|
||||
|