|
这玩意儿应该算是个人原创吧^ ^类似于暗黑啊,等等RPG中人物被遮挡后的处理,不过这里需要利用单位来模拟地形装饰物,因此可能会对地图本身产生一定的压力。不过我在代码上已经加入了几个开关,可以有效的降低多余计算/运行次数。如果需要移植到多人的话,请自己尝试吧^ ^
下面是效果图:
如果你看不懂这段代码的话,个人建议不要乱用= =尽管比较简单。
代码效率或许还有待于优化。
以上。
关键代码:
[jass]
function IsNotHero takes nothing returns boolean
if IsUnitType(GetFilterUnit(),UNIT_TYPE_HERO)==false then
call UnitAddAbility(GetFilterUnit(),’Aloc’)
return true
endif
return false
endfunction
function PerspclreWork takes nothing returns nothing
local real x=GetUnitX(gg_unit_Ewar_0759)
local real y=GetUnitY(gg_unit_Ewar_0759)
local real x1=GetUnitX(GetEnumUnit())
local real y1=GetUnitY(GetEnumUnit())
local real d=SquareRoot((x-x1)*(x-x1)+(y-y1)*(y-y1))
local integer t=R2I(0.255*d)
if t>255 then
set t=255
endif
call SetUnitVertexColor(GetEnumUnit(),255,255,255,t)
endfunction
function PerspclreDone takes nothing returns nothing
call SetUnitVertexColor(GetEnumUnit(),255,255,255,255)
endfunction
function Perspclre takes nothing returns nothing
if IsUnitInRegion(udg_rg,gg_unit_Ewar_0759) then
set udg_b=true
call ForGroup(udg_g,function PerspclreWork)
else
if udg_b then
set udg_b=false
call ForGroup(udg_g,function PerspclreDone)
endif
endif
endfunction
function SystemInit takes nothing returns nothing
local boolexpr b=Condition(function IsNotHero)
call GroupEnumUnitsInRect(udg_g,bj_mapInitialPlayableArea,b)
call DestroyBoolExpr(b)
set b=null
call RegionAddRect(udg_rg,gg_rct_r01)
call RegionAddRect(udg_rg,gg_rct_r02)
call RemoveRect(gg_rct_r01)
call RemoveRect(gg_rct_r02)
call TimerStart(CreateTimer(),0.1,true,function Perspclre)
call DestroyTrigger(GetTriggeringTrigger())
endfunction
[/jass] |
评分
-
查看全部评分
|