Merge pull request #2 from Joshua-Ashton/zhlt_lightflags

Add support for zhlt_lightflags
This commit is contained in:
Marco Cawthorne 2021-08-22 20:22:11 +02:00 committed by GitHub
commit 98a3fedf16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 11 deletions

View File

@ -1063,18 +1063,24 @@ void GetEntityShadowFlags( const entity_t *ent, const entity_t *ent2, int *castS
/* get cast shadows */
if ( castShadows != NULL ) {
value = ValueForKey( ent, "_castShadows" );
if ( value[ 0 ] == '\0' ) {
value = ValueForKey( ent, "_cs" );
value = ValueForKey( ent, "zhlt_lightflags" );
if ( value && value[ 0 ] != '\0' ) {
*castShadows = atoi( value ) & 0x2;
}
if ( value[ 0 ] == '\0' ) {
value = ValueForKey( ent2, "_castShadows" );
}
if ( value[ 0 ] == '\0' ) {
value = ValueForKey( ent2, "_cs" );
}
if ( value[ 0 ] != '\0' ) {
*castShadows = atoi( value );
else {
value = ValueForKey( ent, "_castShadows" );
if ( value[ 0 ] == '\0' ) {
value = ValueForKey( ent, "_cs" );
}
if ( value[ 0 ] == '\0' ) {
value = ValueForKey( ent2, "_castShadows" );
}
if ( value[ 0 ] == '\0' ) {
value = ValueForKey( ent2, "_cs" );
}
if ( value[ 0 ] != '\0' ) {
*castShadows = atoi( value );
}
}
}