Skip to main content

EffectsBuilder.ixx File

Builder for visual effects component configuration. More...

Included Headers

Namespaces Index

namespacehelios
namespaceengine

Main engine module aggregating core infrastructure and game systems. More...

namespacebuilder

Fluent builder pattern for constructing GameObjects. More...

namespacegameObject

Factory and prototype classes for GameObject construction. More...

namespacebuilders

Domain-specific builders for configuring different aspects of GameObjects. More...

Classes Index

classEffectsBuilder

Builder for configuring visual effects components. More...

Description

Builder for visual effects component configuration.

File Listing

The file content with the documentation metadata removed is:

1/**
2 * @file EffectsBuilder.ixx
3 * @brief Builder for visual effects component configuration.
4 */
5module;
6
7export module helios.engine.builder.gameObject.builders.EffectsBuilder;
8
9import helios.engine.ecs.GameObject;
10import helios.engine.builder.gameObject.builders.configs.GfxEffectsConfig;
11
13
14 /**
15 * @brief Builder for configuring visual effects components.
16 *
17 * Provides factory methods for setting up effects like
18 * continuous rotation (spin) on a GameObject.
19 */
21
22 /**
23 * @brief Non-owning pointer to the target GameObject.
24 */
26
27 public:
28
29 /**
30 * @brief Constructs an EffectsBuilder for the given GameObject.
31 *
32 * @param gameObject Target GameObject to configure.
33 */
35
36 /**
37 * @brief Returns a config for graphics effects setup.
38 *
39 * @return GfxEffectsConfig for fluent configuration.
40 */
43 }
44
45
46 };
47
48}

Generated via doxygen2docusaurus 2.0.0 by Doxygen 1.15.0.