Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
d00841b4
Commit
d00841b4
authored
14 years ago
by
John Phan
Browse files
Options
Downloads
Patches
Plain Diff
Fixed quat.
parent
7df77158
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
io_export_unreal_psk_psa.py
+10
-6
10 additions, 6 deletions
io_export_unreal_psk_psa.py
with
10 additions
and
6 deletions
io_export_unreal_psk_psa.py
+
10
−
6
View file @
d00841b4
...
...
@@ -938,7 +938,7 @@ def make_fquat(bquat):
def
make_fquat_default
(
bquat
):
quat
=
FQuat
()
#print(dir(bquat))
quat
.
X
=
bquat
.
x
quat
.
Y
=
bquat
.
y
quat
.
Z
=
bquat
.
z
...
...
@@ -970,8 +970,8 @@ def parse_bone(blender_bone, psk_file, psa_file, parent_id, is_root_bone, parent
if
child_parent
!=
None
:
quat_root
=
blender_bone
.
matrix
quat
=
make_fquat
(
quat_root
.
to_quaternion
())
quat_parent
=
child_parent
.
matrix
.
to_quaternion
().
inver
se
()
#print("DIR:",dir(child_parent.matrix.to_quaternion()))
quat_parent
=
child_parent
.
matrix
.
to_quaternion
().
inver
ted
()
parent_head
=
child_parent
.
head
*
quat_parent
parent_tail
=
child_parent
.
tail
*
quat_parent
...
...
@@ -1410,14 +1410,18 @@ def parse_animation(blender_scene, blender_armatures, psa_file):
if
parent_pose
!=
None
:
parentposemat
=
mathutils
.
Matrix
(
parent_pose
.
matrix
)
#blender 2.4X it been flip around with new 2.50 (mat1 * mat2) should now be (mat2 * mat1)
posebonemat
=
parentposemat
.
invert
()
*
posebonemat
posebonemat
=
parentposemat
.
inverted
()
*
posebonemat
#print("parentposemat ::::",parentposemat)
#print("parentposemat ::::",dir(posebonemat.to_quaternion()))
head
=
posebonemat
.
to_translation
()
quat
=
posebonemat
.
to_quaternion
().
normalize
()
quat
=
posebonemat
.
to_quaternion
().
normalized
()
#print("position :",posebonemat.to_translation(),"quat",posebonemat.to_quaternion().normalized())
#print("posebonemat",posebonemat)
vkey
=
VQuatAnimKey
()
vkey
.
Position
.
X
=
head
.
x
vkey
.
Position
.
Y
=
head
.
y
vkey
.
Position
.
Z
=
head
.
z
#print("quat:",quat)
if
parent_pose
!=
None
:
quat
=
make_fquat
(
quat
)
else
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment