-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Rename DynamicScene to DataSources #1883
Conversation
Also renames lots associated objects for 1.0. Everything is broken, will fix in next commit.
Okay, CHANGES is updated, this is ready. |
Just one more thought, some of these objects will go through further changes as part of 1.0; I didn't want to conflate those changes with renames, so stuff that might go away just go the rename treatment for now. |
Conflicts: CHANGES.md Source/DataSources/ReferenceProperty.js
Conflicts: CHANGES.md
Pretty please? |
viewer.trackedObject = dynamicObject; | ||
var entity = dataSource.entities.getById(lookAt); | ||
if (defined(entity)) { | ||
viewer.trackedObject = entity; |
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.
Should trackedObject
change to trackedEntity
to match?
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.
I think that's a good idea; same for selectedObject
. Both will be more clear.
Ready for another look. |
I fixed a few places that still used the term "object" and switched to "entity" to be consistent. Merging. |
Rename DynamicScene to DataSources
Thanks for the assist. I plan on doing a doc review/scrub at some point as well (probably before I write tutorials). |
Find and replace in #1883 caused some bad pluralization.
As discussed in #1727, this renames the
DynamicScene
layer toDataSources
it also renames many related objects and files. I have to update CHANGES, but this is otherwise ready for review. Due to the large scale renames, I would prefer to get this into master ASAP.Fixed #1727