Added aqua_speed for rite geo 50 tryker
[ryzomcore.git] / nel / tools / 3d / plugin_max / scripts / reload_textures.ms
blob45167a0f5302f9a8cfe020d344198705d14837ac
1 -- Function to reload bitmaps in a texture\r
2 fn reload_material mat =\r
3 (\r
4         if classof mat == Multimaterial then\r
5         (\r
6                 for submat = 1 to mat.count do \r
7                 (\r
8                         reload_material mat[submat]\r
9                 )\r
10         )\r
11         else if classof mat == Standard then\r
12         (\r
13                 -- Has a texture ?\r
14                 if mat.DiffuseMap != undefined then\r
15                 (\r
16                         -- Is it a bitmaptex ?\r
17                         if classof mat.DiffuseMap == bitmapTex then\r
18                         (\r
19                                 NelReloadTexture mat.DiffuseMap\r
20                         )\r
21                 )\r
22         )\r
23 )\r
25 -- For each material in the material editor\r
26 for mate in meditMaterials do\r
27 (\r
28         reload_material mate\r
29         forceCompleteRedraw ()\r
30 )\r