Scene related George functions¶
Scene related George functions.
tv_scene_enum_id(position: int) -> int
¶
Get the id of the scene at the given position in the current project.
Raises:
Type | Description |
---|---|
pytvpaint.george.exceptions.GeorgeError
|
if no scene found at the provided position |
Source code in pytvpaint/george/grg_scene.py
9 10 11 12 13 14 15 16 |
|
tv_scene_current_id() -> int
¶
Get the id of the current scene.
Source code in pytvpaint/george/grg_scene.py
19 20 21 |
|
tv_scene_move(scene_id: int, position: int) -> None
¶
Move a scene to another position.
Source code in pytvpaint/george/grg_scene.py
24 25 26 |
|
tv_scene_new() -> None
¶
Create a new scene (with a new clip) after the current scene.
Source code in pytvpaint/george/grg_scene.py
29 30 31 |
|
tv_scene_duplicate(scene_id: int) -> None
¶
Duplicate the given scene.
Source code in pytvpaint/george/grg_scene.py
34 35 36 |
|
tv_scene_close(scene_id: int) -> None
¶
Remove the given scene.
Source code in pytvpaint/george/grg_scene.py
39 40 41 |
|