Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-05-02 11:25:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-02 11:25:36 +0300
commit5b14b5654231a50874fd9103d2adb306f62aec8d (patch)
treef2c0c65e5b30bd62fd7369c9704417f15fbc37c5 /source/blender/makesdna/DNA_smoke_types.h
parent22c293f6d606664ed459200905b9d87a772ec986 (diff)
Cleanup: typos in comments
Diffstat (limited to 'source/blender/makesdna/DNA_smoke_types.h')
-rw-r--r--source/blender/makesdna/DNA_smoke_types.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesdna/DNA_smoke_types.h b/source/blender/makesdna/DNA_smoke_types.h
index 641a1fbf8e3..d795800df2f 100644
--- a/source/blender/makesdna/DNA_smoke_types.h
+++ b/source/blender/makesdna/DNA_smoke_types.h
@@ -276,13 +276,13 @@ typedef struct SmokeDomainSettings {
/* flags */
enum {
- /**old style emission*/
+ /** Old style emission. */
MOD_SMOKE_FLOW_ABSOLUTE = (1 << 1),
- /** passes particles speed to the smoke */
+ /** Passes particles speed to the smoke. */
MOD_SMOKE_FLOW_INITVELOCITY = (1 << 2),
- /** use texture to control emission speed */
+ /** Use texture to control emission speed. */
MOD_SMOKE_FLOW_TEXTUREEMIT = (1 << 3),
- /** use specific size for particles instead of closest cell */
+ /** Use specific size for particles instead of closest cell. */
MOD_SMOKE_FLOW_USE_PART_SIZE = (1 << 4),
};