AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting (https://forums.alliedmods.net/forumdisplay.php?f=107)
-   -   [CSGO] Footstep shadows (With transparency) (https://forums.alliedmods.net/showthread.php?t=291606)

micapat 12-15-2016 17:36

[CSGO] Footstep shadows (With transparency)
 
Hi everyone,

Valve pushed a new update:

HTML Code:

- Fixed rendering issues with new character footstep shadows.
Now, when the player is set transparent / invisible with "sv_disable_immunity_alpha 1", we can see this:

http://image.noelshack.com/minis/201...sans-titre.png

Has someone found a fix for this? I found in netprops.txt (Using 'sm_dump_netprops') the entity:

PHP Code:

CFootstepControl (type DT_FootstepControl)
  ... 

/!\ This entity already exists before this update, but maybe it controls the footstep shadows..? /!\

------------------------------------
Is there a better way to remove the shadow of the players? I currently use this to remove it:

PHP Code:

public void OnMapStart()
{
    
int iEntity = -1;
    
    while ((
iEntity FindEntityByClassname(iEntity"env_cascade_light")) != -1
    { 
        
AcceptEntityInput(iEntity"Kill");
    }


------------------------------------
Thank you for your help :bee:!

txzzo 12-28-2016 14:12

Re: [CSGO] Footstep shadows (With transparency)
 
Did you find out anything more about this? Having the same issue.


All times are GMT -4. The time now is 17:04.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.