"Own" (the adjective) cannot be used on its own. It should be combined with something like "its own", "our own", "her own", or "the object's own". It also isn't used separately to mean something like "separate". Also, "its own" is correct instead of "it's own" which is a misues of the verb.
36 lines
598 B
C
36 lines
598 B
C
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup DNA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* clang-format off */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name World Struct
|
|
* \{ */
|
|
|
|
#define _DNA_DEFAULT_World \
|
|
{ \
|
|
.horr = 0.05f, \
|
|
.horg = 0.05f, \
|
|
.horb = 0.05f, \
|
|
\
|
|
.aodist = 10.0f, \
|
|
.aoenergy = 1.0f, \
|
|
\
|
|
.preview = NULL, \
|
|
.miststa = 5.0f, \
|
|
.mistdist = 25.0f, \
|
|
\
|
|
.probe_resolution = LIGHT_PROBE_RESOLUTION_1024, \
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* clang-format on */
|