be
be copied to clipboard
nested inventory
Do i need to keep inventory.yaml this way ?
Asset:
set:
-park
-zoo
-road
prop:
-bottle
-mobile
-sh203
char:
-joker
-alien
Sequence:
seq001:
-sh101
-sh102
-sh103
seq002:
-sh201
-sh202
-sh203
in terminal
be in project set park modeling
be in project seq001 sh103 animation
Have you had a look at the docs for the inventory?
And here's an example.
- https://github.com/mottosso/be-film
Got it, One more quick question, BE_BINDING return asset or sequence based on BE_TOPICS but How do you parse "BE_TOPICS" variable directly in terminal to retrieve user arguments ?
inventory.yaml
asset:
- bruce
- luke
sequence:
- seq01
- seq02
shot:
- sh101
- sh102
- sh103
in terminal
for shot
be in hulk seq01 sh103 animation (i.e BE_TOPICS=hulk seq01 sh103 animation)
for asset
be in hulk bruce rigging (i.e BE_TOPICS=hulk seq01 sh103 animation)
For parsing topics, this looks to be it.
- https://github.com/mottosso/be/blob/0f3d4f3597c71223f616d78c6d9b2c8dffcd8a71/be/cli.py#L77