Just wondering if there is another way I haven't come across yet to easily extend the base Cesium classes to add new functionality. For instance, if I wanted to make a custom class called MyEntity that extends the base Entity class, can I do that?
I've tested doing this. I accept the object that would be used to create the entity as a parameter in my class and then pass it to the super() call to create the Cesium Entity. All that seems to work but when I attempt to add my new MyEntity object to the viewer I get an error that name is a reserved keyword.
I've gotten this to work with another class or two but Entity seems to be giving me trouble. Is there something stupid I'm missing?