py script

This commit is contained in:
nora 2023-04-17 20:07:54 +02:00
parent 2be0e28305
commit 851d491846
4 changed files with 31 additions and 6 deletions

View file

@ -52,7 +52,7 @@ impl Bg {
h: 0,
},
layer: (),
blend_graphic: String::new(),
//ADD blend_graphic: String::new(),
}
}
}
@ -77,7 +77,7 @@ impl Mid {
h: 32,
}),
},
blend_graphic: String::new(),
//ADD blend_graphic: String::new(),
}
}
}
@ -94,7 +94,7 @@ impl Fg {
h: 0,
},
layer: (),
blend_graphic: String::new(),
//ADD blend_graphic: String::new(),
}
}
}
@ -148,7 +148,7 @@ where
pub graphic_name: String,
pub tex_rect: IntRect,
pub layer: Layer::SpecificDef,
pub blend_graphic: String,
//ADD pub blend_graphic: String,
}
#[derive(Debug, Inspect, Default, Serialize, Deserialize)]
@ -183,7 +183,7 @@ where
graphic_name: Default::default(),
tex_rect: Default::default(),
layer: Layer::SpecificDef::default(),
blend_graphic: String::new(),
//ADD blend_graphic: String::new(),
}
}
}