-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
178 additions
and
24 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
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,28 @@ | ||
''' | ||
Copyright (c) 2022 RCT Graphics Helper developers | ||
For a complete list of all authors, please refer to the addon's meta info. | ||
Interested in contributing? Visit https://github.com/oli414/Blender-RCT-Graphics | ||
RCT Graphics Helper is licensed under the GNU General Public License version 3. | ||
''' | ||
|
||
import bpy | ||
import math | ||
import os | ||
|
||
from .render_operator import RCTRender | ||
|
||
|
||
class RenderTrack(RCTRender, bpy.types.Operator): | ||
bl_idname = "render.rct_track" | ||
bl_label = "Render RCT Track" | ||
|
||
def create_task(self, context): | ||
scene = context.scene | ||
props = scene.rct_graphics_helper_track_properties | ||
general_props = scene.rct_graphics_helper_general_properties | ||
|
||
# Create the list of frames with our parameters | ||
self.task_builder.clear() | ||
return self.task_builder.create_task(context) |
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
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,31 @@ | ||
''' | ||
Copyright (c) 2022 RCT Graphics Helper developers | ||
For a complete list of all authors, please refer to the addon's meta info. | ||
Interested in contributing? Visit https://github.com/oli414/Blender-RCT-Graphics | ||
RCT Graphics Helper is licensed under the GNU General Public License version 3. | ||
''' | ||
|
||
import bpy | ||
import math | ||
import os | ||
|
||
from ..builders.task_builder import TaskBuilder | ||
|
||
from ..operators.render_operator import RCTRender | ||
|
||
class TrackProperties(bpy.types.PropertyGroup): | ||
placeholder = bpy.props.BoolProperty( | ||
name="Placeholder", | ||
description="Test.", | ||
default=False) | ||
|
||
|
||
def register_track_properties(): | ||
bpy.types.Scene.rct_graphics_helper_track_properties = bpy.props.PointerProperty( | ||
type=TrackProperties) | ||
|
||
|
||
def unregister_track_properties(): | ||
del bpy.types.Scene.rct_graphics_helper_track_properties |
Oops, something went wrong.