forked from acemod/ACE3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Optics - Convert Optics to use CBA Optics (acemod#7273)
* convert ace_optics to use cba_optics * convert ace optics to cba optics * Remove duplicate * Add PIP config * Use optics index * Fix pboProject build * Update CfgWeapons.hpp * Correct SOS, adjust sizes and fix build issues * Update addons/optics/script_component.hpp * Corrected sizes again * Made the scripted optics the first optics mode, fixed PIP SOS not being able to use irons * Remove unused test object * Readd AI stuff visionMode is already set * Updated some info on binos forceOptics also already set * Overhaul of magnifications * Adjusted MOS & Nightforce * Maybe this time the optics sizes will be fine... surely? * Replace heavy optics blur with CBA one * Added PIP names back --------- Co-authored-by: johnb432 <[email protected]> Co-authored-by: PabstMirror <[email protected]>
- Loading branch information
Showing
31 changed files
with
165 additions
and
750 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,38 @@ | ||
#define MACRO_PRELOAD \ | ||
GVAR(BodyDay) = "*"; \ | ||
GVAR(BodyNight) = "*"; \ | ||
GVAR(ReticleDay) = "*"; \ | ||
GVAR(ReticleNight) = "*" | ||
|
||
class PreloadTextures { | ||
class CfgWeapons { | ||
class ACE_optic_Hamr_2D { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_Hamr_PIP { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_Arco_2D { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_Arco_PIP { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_MRCO_2D { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_MRCO_PIP { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_SOS_2D { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_SOS_PIP { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_LRPS_2D { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
|
||
class ACE_optic_LRPS_PIP { | ||
MACRO_PRELOAD; | ||
PRELOAD; | ||
}; | ||
}; | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.