Results 1 to 5 of 5

Thread: How to enable snowmask for Sengoku campaign

  1. #1

    Default How to enable snowmask for Sengoku campaign

    I wonder how to enable snowmask for Sengoku campaign map, in files is old snowmask from Empire but it isn't active - someone maybe has idea how to active this?
    Wolf girl who likes to draw anime girls ❤️ DeviantArt, Twitter
    Also mad creator of

    One Ring to rule them all, One Ring to find them,

    One Ring to bring them all, and in the darkness bind them,
    TWCenter Forum, MODDB, Patreon

  2. #2
    Primergy's Avatar Protector of the Union
    Join Date
    Mar 2009
    Location
    Augsburg
    Posts
    2,491

    Default Re: How to enable snowmask for Sengoku campaign

    Just a pure guess - maybe via the shader files?

  3. #3

    Default Re: How to enable snowmask for Sengoku campaign

    Huh, I found something about snow mask in shaders.pack/fx/campaignoverlay.hlsl with note: obsoleted, but I don't know what I can do with this

    Code:
    //////////////////////////////////////////////////////////////////////////////////////////////////////	Pixel Shaders
    ////////////////////////////////////////////////////////////////////////////////////////////////////
    
    
    
    
    float4 ps30_main( in VS_OUTPUT input ) : COLOR
    {
    	float4 summer_diffuse = tex2D( s_summer_diffuse, input.tex );
    
    
    	// RJG OBSOLETED
    	/*
    	float snow_mask	= campaign_snow( input.world_pos );
    	float4 diffuse = lerp( summer_diffuse, winter_diffuse, snow_mask );
    	float4 winter_diffuse = tex2D( s_winter_diffuse, input.tex );
    	*/
    	
    	float4 diffuse = summer_diffuse;
    
    
    	return float4( diffuse.rgb, diffuse.a * input.alpha );
    }
    Wolf girl who likes to draw anime girls ❤️ DeviantArt, Twitter
    Also mad creator of

    One Ring to rule them all, One Ring to find them,

    One Ring to bring them all, and in the darkness bind them,
    TWCenter Forum, MODDB, Patreon

  4. #4
    Primergy's Avatar Protector of the Union
    Join Date
    Mar 2009
    Location
    Augsburg
    Posts
    2,491

    Default Re: How to enable snowmask for Sengoku campaign

    I guess the /* means that it the code is commented out. If you delete the comment-signs the code might get activated again. Maybe you can crash the game with it, which would show that the code is still working ^^.

  5. #5

    Default Re: How to enable snowmask for Sengoku campaign

    I tried (I forgot to say about it) but no effects :/
    Wolf girl who likes to draw anime girls ❤️ DeviantArt, Twitter
    Also mad creator of

    One Ring to rule them all, One Ring to find them,

    One Ring to bring them all, and in the darkness bind them,
    TWCenter Forum, MODDB, Patreon

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •