We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
private <array> shouldn't be marked as deprecated in arma 3. A case, where it is usefull (defining variables on another scope):
private <array>
private ["_myVar1", "_myVar2"]; switch (_switchvar) do { case 1: {_myVar1 = 1; _myVar2 = 1;}; case 2: {_myVar1 = 2; _myVar2 = 2;}; case 3: {_myVar1 = 3; _myVar2 = 3;}; default {_myVar1 = 0; _myVar2 = 0;}; };
Or like in CBA, where you prevent variables from beeing overwritten: https://github.com/CBATeam/CBA_A3/blob/7a1add1fc3f6227e5a10e329403d31138d5314cf/addons/settings/XEH_preInit.sqf#L45
The text was updated successfully, but these errors were encountered:
Resolved in https://github.com/Armitxes/VSCode_SQF/releases/tag/1.0.5 Marketplace update available is VS Code.
Thanks for the issue report.
Sorry, something went wrong.
Armitxes
No branches or pull requests
private <array>
shouldn't be marked as deprecated in arma 3.A case, where it is usefull (defining variables on another scope):
Or like in CBA, where you prevent variables from beeing overwritten:
https://github.com/CBATeam/CBA_A3/blob/7a1add1fc3f6227e5a10e329403d31138d5314cf/addons/settings/XEH_preInit.sqf#L45
The text was updated successfully, but these errors were encountered: