-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #570, new algorithm for filtering clamping keyframes and new n…
…ames for these things
- Loading branch information
Showing
4 changed files
with
155 additions
and
109 deletions.
There are no files selected for viewing
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
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
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import inspect | ||
|
||
from typing import Tuple | ||
import os | ||
import sys | ||
|
||
import bpy | ||
from io_xplane2blender import xplane_config | ||
from io_xplane2blender.tests import * | ||
from io_xplane2blender.tests import test_creation_helpers | ||
|
||
__dirname__ = os.path.dirname(__file__) | ||
|
||
class TestDragRotateStartEndTheSame(XPlaneTestCase): | ||
def test_drag_rotate_start_end_the_same(self)->None: | ||
filename = inspect.stack()[0].function | ||
|
||
self.assertExportableRootExportEqualsFixture( | ||
filename[5:], | ||
os.path.join(__dirname__, "fixtures", f"{filename}.obj"), | ||
{"ANIM", "ATTR_manip", "TRIS"}, | ||
filename, | ||
) | ||
|
||
|
||
runTestCases([TestDragRotateStartEndTheSame]) |