Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
you need a *.gtex.lua file in config\ground_texture\
So, for your mod you grab the pearl_5.gtex.lua i guess.
Then you'll create a folder in your mod file structure and throw the file in there.
/res/config/ground_texture/asset/cheat/pearl_5.gtex.lua
And then you add some code to your construction file:
result.groundFaces = { {
face = { { -32, -32, 0 }, { 32, -32, 0 }, { 32, 32, 0 }, { -32, 32, 0} },
modes = {{type = "FILL",
key = "asset/cheat/pearl_5.gtex.lua"}}
} }
You might want to format that a little nicer. :)