-
Notifications
You must be signed in to change notification settings - Fork 739
New issue
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
Tagging - Add support for mission Tags #7710
Conversation
@@ -20,7 +21,8 @@ | |||
params [ | |||
["_unit", objNull, [objNull]], | |||
["_texture", "", [""]], | |||
["_material", "", [""]] | |||
["_material", "", [""]], | |||
["_tagModel", "UserTexture1m_F", [""]] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not used anywhere in this function. Should be added to L117 so it is passed to createTag
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its not used in the params, but should still be in the header, and adding it to params will make sure that it prints error at correct place if you pass wrong datatype.
L117 is oopsie
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good overall
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
When merged this pull request will:
Parse tags from description.ext
It will also handle mission/mod paths just like https://community.bistudio.com/wiki/Description.ext#CfgSounds
This is based on #7709 branch (sorry but they would conflict either way)