Skip to content

Commit

Permalink
core: frontend: add generic rover 3d model
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Aug 21, 2023
1 parent 6fe4255 commit 95750fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ export default Vue.extend({
return 'sub'
case 'Surface Boat':
return 'boat'
case 'Ground Rover':
return 'rover'
default:
return ''
}
Expand All @@ -164,6 +166,10 @@ export default Vue.extend({
// we already know it is a boat, so check only TYPE and ignore CLASS (rover/boat/balancebot)
result = Object.entries(ROVER_FRAME_TYPE).find((key, value) => value === this.frame_type)?.[1] as string
break
case 'Ground Rover':
// TOOD: check FRAME_TYPE
result = 'unknown'
break
// TODO: other vehicles
default:
break
Expand Down

0 comments on commit 95750fa

Please sign in to comment.