mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-06 07:19:05 +00:00
30 lines
574 B
Text
30 lines
574 B
Text
-- Function to reload bitmaps in a texture
|
|
fn reload_material mat =
|
|
(
|
|
if classof mat == Multimaterial then
|
|
(
|
|
for submat = 1 to mat.count do
|
|
(
|
|
reload_material mat[submat]
|
|
)
|
|
)
|
|
else if classof mat == Standard then
|
|
(
|
|
-- Has a texture ?
|
|
if mat.DiffuseMap != undefined then
|
|
(
|
|
-- Is it a bitmaptex ?
|
|
if classof mat.DiffuseMap == bitmapTex then
|
|
(
|
|
NelReloadTexture mat.DiffuseMap
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
-- For each material in the material editor
|
|
for mate in meditMaterials do
|
|
(
|
|
reload_material mate
|
|
forceCompleteRedraw ()
|
|
)
|