-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Populate quick add from defaults service.
- Loading branch information
Showing
7 changed files
with
110 additions
and
97 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
namespace CesiumForUnity | ||
{ | ||
public enum QuickAddItemType | ||
{ | ||
BlankTileset, | ||
DynamicCamera, | ||
IonTileset | ||
} | ||
|
||
public class QuickAddItem | ||
{ | ||
public QuickAddItemType type; | ||
public string name; | ||
public string tooltip; | ||
public string tilesetName; | ||
public long tilesetId; | ||
public string overlayName; | ||
public long overlayId; | ||
|
||
public QuickAddItem() | ||
{ | ||
} | ||
|
||
public QuickAddItem( | ||
QuickAddItemType type, | ||
string name, | ||
string tooltip, | ||
string tilesetName, | ||
long tilesetId, | ||
string overlayName, | ||
long overlayId) | ||
{ | ||
this.type = type; | ||
this.name = name; | ||
this.tooltip = tooltip; | ||
this.tilesetName = tilesetName; | ||
this.tilesetId = tilesetId; | ||
this.overlayName = overlayName; | ||
this.overlayId = overlayId; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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