-
Notifications
You must be signed in to change notification settings - Fork 538
Make time and timeline controlled by blueprint #11405
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
base: main
Are you sure you want to change the base?
Changes from 19 commits
f96b8a2
9f1e37f
57b35ba
22792b7
6d5f2e7
0714715
7bbbea2
c8610b0
c2f541d
cc16f97
1b10e83
3e7ea89
859a286
7647309
e6ca9f6
b249c43
bd286d2
c184f5d
ba81443
41e1636
d84ada0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
namespace rerun.blueprint.components; | ||
|
||
// --- | ||
|
||
/// A reference to a time. | ||
struct TimeCell ( | ||
"attr.arrow.transparent", | ||
"attr.rerun.scope": "blueprint", | ||
"attr.python.aliases": "long", | ||
"attr.rust.derive": "Copy, PartialEq, Eq, PartialOrd, Ord", | ||
"attr.rust.repr": "transparent", | ||
"attr.rust.tuple_struct" | ||
) { | ||
time: rerun.datatypes.TimeInt (order: 100); | ||
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. This will be a bit confusing. We already hav e a I feel like this should either have a |
||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
Note for self: I wonder if we should somehow mark its "staticness" here? 🤔