-
Notifications
You must be signed in to change notification settings - Fork 19
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
Anim speed #228
Anim speed #228
Changes from all commits
40218c6
27dc278
475a88f
f4274c0
4880333
17f424a
502bc31
4057c5b
e56ca0b
823d000
773ae52
58ede8c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<OverlayData> | ||
<MarkerCategory DisplayName="My Category" Name="mycategory"> | ||
</MarkerCategory> | ||
|
||
<POIs> | ||
<Trail AnimSpeed="0.000000" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="1.000000" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="3.140000" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="123.456001" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="0.000000" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="1.000000" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="3.140000" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="123.456001" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="-3.140000" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="-123.456001" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="-3.140000" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
<Trail AnimSpeed="-123.456001" Type="mycategory" MapID="50" TrailData="temp_name_of_trail.trl"/> | ||
</POIs> | ||
</OverlayData> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<OverlayData> | ||
<MarkerCategory DisplayName="My Category" Name="mycategory"> | ||
</MarkerCategory> | ||
|
||
<POIs> | ||
<Trail AnimSpeed="0" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimSpeed="1.0" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimSpeed="3.14" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimSpeed="123.456" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimationSpeed="0" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimationSpeed="1" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimationSpeed="3.14" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimationSpeed="123.456" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimSpeed="-3.14" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimSpeed="-123.456" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimationSpeed="-3.14" TrailData="trail.trl" Type="mycategory" /> | ||
<Trail AnimationSpeed="-123.456" TrailData="trail.trl" Type="mycategory" /> | ||
</POIs> | ||
</OverlayData> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,6 +119,12 @@ class Testcase: | |
expected_output_xml_path="./expected_outputs/xml_profession_filter", | ||
expected_output_proto_path="./expected_outputs/proto_profession_filter", | ||
), | ||
Testcase( | ||
name="animation_speed", | ||
xml_input_paths=["./inputs/xml_animation_speed"], | ||
expected_output_xml_path="./expected_outputs/xml_animation_speed", | ||
expected_output_proto_path="./expected_outputs/proto_animation_speed" | ||
), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where are the proto testcases? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As mentioned in the top comment, the proto will be changed by #151. I didn't want to add an incorrect proto There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not just change the proto here? Now seems like as good of a time as any to avoid it being forgotten. |
||
Testcase( | ||
name="cull_chirality", | ||
xml_input_paths=["./inputs/xml_cull_chirality"], | ||
|
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.
Full Diff