8000 Add zero option to ExtraVectorsFlags to allow blender plugin to set the by Ghostwalker71 · Pull Request #48 · niftools/nifxml · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add zero option to ExtraVectorsFlags to allow blender plugin to set the #48

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

Merged
merged 2 commits into from
Jun 25, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion nif.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE niftoolsxml>
<niftoolsxml version="0.7.1.0">
<niftoolsxml version="0.7.1.1">
<!--These are the version numbers marked as supported by NifSkope.
The num argument is the numeric representation created by storing
each part of the version in a byte. For example, 4.0.0.2 is
Expand Down Expand Up @@ -983,6 +983,7 @@
</enum>

<enum name="ExtraVectorsFlags" storage="byte">
<option value="0" name="None">No Tangents and Bitangents Vectors.</option>
<option value="16" name="Tangents_Bitangents">Has Tangents and Bitangents Vectors.</option>
</enum>

Expand Down
0