Garry's Mod
GShader Library
Hiển thị 21-30 trong 97 mục
< 1  2  3  4  5 ... 10 >
Cập nhật: 4 Thg10 @ 10:54am

Cập nhật: 4 Thg10 @ 10:38am

Fixed fog mask for Proton

Cập nhật: 1 Thg10 @ 1:06pm

Normal smooth optimisation

Cập nhật: 27 Thg09 @ 10:48am

ACRCW base fix

if ArcCW then local function FixACRCWBase(class) class = class or "arccw_base" local ENT = weapons.GetStored(class) old_DrawHolosight = old_DrawHolosight or ENT.DrawHolosight old_FormCheapScope = old_FormCheapScope or ENT.FormCheapScope local function depthBufferCheck() local rt = render.GetRenderTarget() return rt and rt:GetName() == "_rt_resolvedfullframedepth" end function ENT:DrawHolosight(...) if depthBufferCheck() then return end old_DrawHolosight(self, ...) end function ENT:FormCheapScope(...) if depthBufferCheck() then return end old_FormCheapScope(self, ...) end weapons.Register(ENT, class) end for k,v in pairs(weapons.GetList()) do if v.Base == "arccw_base" then print(v.Base) FixACRCWBase(v.ClassName) end end FixACRCWBase() end

Cập nhật: 27 Thg09 @ 8:53am

Small update for ARCCW

Cập nhật: 27 Thg09 @ 8:50am

Small update for ARC9

Cập nhật: 23 Thg09 @ 6:04am

FAS2 adaptation

Cập nhật: 23 Thg09 @ 5:29am

Fog optimisation

Cập nhật: 21 Thg09 @ 6:16pm

- Fog Mask optimisation.
New function:

function shaderlib.GetViewProjZ(viewData) if !ismatrix(viewData) then viewData = shaderlib.GetViewProjMatrix(viewData) end return Vector4( viewData:GetField( 3,1 ), viewData:GetField( 3,2 ), viewData:GetField( 3,3 ), viewData:GetField( 3,4 ) ) end

Cập nhật: 21 Thg09 @ 1:25pm

- Fixed Physgun effect
- Added Normal two pass smooth (Guided filter)