public AdvancedRenderCommonValues(Value.Path basepath)
 {
     AlphaTextureParam        = new AlphaTextureParameter(basepath);
     UVDistortionTextureParam = new UVDistortionTextureParameter(basepath);
     AlphaCutoffParam         = new AlphaCutoffParameter();
     BlendTextureParams       = new BlendTextureParameters(basepath);
     SoftParticleParams       = new SoftParticleParameters();
 }
Example #2
0
        public AdvancedRenderCommonValues()
        {
#if __EFFEKSEER_BUILD_VERSION16__
            EnableAlphaTexture = new Value.Boolean(false);
            AlphaTextureParam  = new AlphaTextureParameter();
#endif

            AlphaCutoffParam = new AlphaCutoffParameter();
        }
        public AdvancedRenderCommonValues(Value.Path basepath)
        {
            EnableAlphaTexture = new Value.Boolean(false);
            AlphaTextureParam  = new AlphaTextureParameter(basepath);

            EnableUVDistortionTexture = new Value.Boolean(false);
            UVDistortionTextureParam  = new UVDistortionTextureParameter(basepath);

            AlphaCutoffParam = new AlphaCutoffParameter();
        }