码迷,mamicode.com
首页 > 其他好文 > 详细

关于清除丢失贴图与IES文件

时间:2014-10-15 21:28:21      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   文件   sp   div   log   

fn YY_clrmessingmaps =
(
    YY_messingmap = #()
    allBitmaps = getClassInstances BitmapTexture  -- 所有材质
for m=1 to allBitmaps.count do
(
    if not doesfileexist allBitmaps[m].filename do append YY_messingmap m
    ) -- 收集丢失贴图
    if YY_messingmap.count != 0 do
        for c in YY_messingmap do
        (
            allBitmaps[c].filename = ""
            );  -- 清除丢失贴图
            
    YY_messingIES = #()
    all_light = getClassInstances Target_Light + getClassInstances Free_Light  -- 所有灯光
for l=1 to all_light.count do
(
    if not doesfileexist all_light[l].webFile do append YY_messingIES l
    ) -- 收集丢失IES
    if YY_messingIES.count != 0 do
        for w in YY_messingIES do
        (
            all_light[w].webFile = ""
            ) -- 清除丢失IES
    )-- 清除丢失贴图与IES

 

关于清除丢失贴图与IES文件

标签:style   blog   color   ar   for   文件   sp   div   log   

原文地址:http://www.cnblogs.com/3dxy/p/4026941.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!