图形增强 使用前修改MOD的分辨率(自己电脑屏幕用的)假如你的电脑分辨率是1366*768, 用文本打开 d3d9 和 dxgi两个文件 找到里面的这段代码: 如#ifndef SMAA_PIXEL_SIZE // It's actually set on runtime, this is for compilation time syntax checking. #define SMAA_PIXEL_SIZE float2(1.0 / 1680.0, 1.0 / 1050.0) #endif 改成#ifndef SMAA_PIXEL_SIZE // It's actually set on runtime, this is for compilation time syntax checking. #define SMAA_PIXEL_SIZE float2(1.0 / 1366.0, 1.0 / 768.0) #endif