fix particle
This commit is contained in:
parent
ea0b51054e
commit
6b8ec24e66
2 changed files with 17 additions and 1 deletions
|
@ -3,6 +3,8 @@ Version: 0.1.2
|
||||||
Date: 2023-04-16
|
Date: 2023-04-16
|
||||||
Features:
|
Features:
|
||||||
- K2 matter
|
- K2 matter
|
||||||
|
Fixes:
|
||||||
|
- Mining particle graphics update
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.1.1
|
Version: 0.1.1
|
||||||
Date: 2023-03-28
|
Date: 2023-03-28
|
||||||
|
|
|
@ -1,9 +1,23 @@
|
||||||
local resource_autoplace = require('resource-autoplace');
|
local resource_autoplace = require('resource-autoplace');
|
||||||
local noise = require('noise');
|
local noise = require('noise');
|
||||||
|
|
||||||
|
local futil = require("util");
|
||||||
local util = require("data-util");
|
local util = require("data-util");
|
||||||
|
|
||||||
if util.me.salt() then
|
if util.me.salt() then
|
||||||
|
|
||||||
|
|
||||||
|
local particle = futil.table.deepcopy(data.raw["optimized-particle"]["stone-particle"])
|
||||||
|
particle.name = "salt-particle"
|
||||||
|
|
||||||
|
for i, picture in ipairs(particle.pictures) do
|
||||||
|
local tint = {r=1, g=1, b=1, a=0}
|
||||||
|
picture.tint = tint
|
||||||
|
picture.hr_version.tint = tint
|
||||||
|
end
|
||||||
|
|
||||||
|
data:extend({particle})
|
||||||
|
|
||||||
data:extend({
|
data:extend({
|
||||||
{
|
{
|
||||||
type = "autoplace-control",
|
type = "autoplace-control",
|
||||||
|
@ -29,7 +43,7 @@ data:extend({
|
||||||
minable =
|
minable =
|
||||||
{
|
{
|
||||||
hardness = 1,
|
hardness = 1,
|
||||||
mining_particle = "copper-ore-particle",
|
mining_particle = "salt-particle",
|
||||||
mining_time = 0.5,
|
mining_time = 0.5,
|
||||||
result = "salt"
|
result = "salt"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue