
非活动准星移除器
当你持枪且未瞄准时,移除屏幕中央的灰色圆点。
查看大图刚刚在 scripts\__Packages\gtav.hud.hudComponents\HUD_RETICLE 中添加了一行。
[spoiler]function set sfIsAiming(value)
if(this._isBow)
if(value)
this.reticle.startEnterFrame();
否则
this.reticle.stopEnterFrame();
this.reticleMC._visible = value;
}[/spoiler]
1.0.1 变更脚本 __Packages\rdr3.hud\ReticleBase:
[spoiler]function darkenReticle(shouldDarkenReticle)
var loc3 = this.centerDotMC.transform.colorTransform;
if(shouldDarkenReticle)_loc3_.redMultiplier = 1; _loc3_.greenMultiplier = 1; _loc3_.blueMultiplier = 1;
否则_loc3_.redMultiplier = 1; _loc3_.greenMultiplier = 1; _loc3_.blueMultiplier = 1;
this.centerDotMC.transform.colorTransform = loc3;
}[/spoiler]
使用了来自 图形问题修复 的文件,因此也包括了准星框修复。
要安装,请将其放入 lml/stream 文件夹中。
正在加载版本记录…
正在加载评论…
评论在新手盒子客户端中发表,这里同步展示。