2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2022 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2022-01-12 12:16:41 +01:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "COM_Node.h"
|
|
|
|
|
|
|
|
|
|
namespace blender::compositor {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \brief SceneTimeNode
|
|
|
|
|
* \ingroup Node
|
|
|
|
|
*/
|
|
|
|
|
class SceneTimeNode : public Node {
|
|
|
|
|
public:
|
|
|
|
|
SceneTimeNode(bNode *editor_node);
|
|
|
|
|
void convert_to_operations(NodeConverter &converter,
|
|
|
|
|
const CompositorContext &context) const override;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace blender::compositor
|