Source code for stalker.core.models.pipelineStep
#-*- coding: utf-8 -*-
from stalker.core.models import entity
########################################################################
[docs]class PipelineStep(entity.Entity):
"""Common and differet steps for different types of assets.
A PipelineStep object represents the general pipeline steps which are
used around the studio. A couple of examples are:
* Design
* Model
* Rig
* Fur
* Shading
* Previs
* Match Move
* Animations
etc.
Doesn't add any new parameter for its parent class.
"""
#----------------------------------------------------------------------
[docs] def __init__(self, **kwargs):
super(PipelineStep, self).__init__(**kwargs)
#----------------------------------------------------------------------
def __eq__(self, other):
"""the equality operator
"""
return super(PipelineStep, self).__eq__(other) and \
isinstance(other, PipelineStep)