About this mod
Remove the grey dot in the middle of the screen when you have a weapon out and aren't aiming it.
- Permissions and credits
{
if(this._isBow)
{
if(value)
{
this.reticle.startEnterFrame();
}
else
{
this.reticle.stopEnterFrame();
}
}
this.reticleMC._visible = value;
}
1.0.1 changes scripts\__Packages\rdr3.hud\ReticleBase:
{
var _loc3_ = this.centerDotMC.transform.colorTransform;
if(shouldDarkenReticle)
{
_loc3_.redMultiplier = 1;
_loc3_.greenMultiplier = 1;
_loc3_.blueMultiplier = 1;
}
else
{
_loc3_.redMultiplier = 1;
_loc3_.greenMultiplier = 1;
_loc3_.blueMultiplier = 1;
}
this.centerDotMC.transform.colorTransform = _loc3_;
}
Used file from Graphical issue fixes so reticle box fix is also included.
To install put in the lml/stream folder.