"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.
32 lines
602 B
C
32 lines
602 B
C
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup DNA
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
/* clang-format off */
|
|
|
|
/* -------------------------------------------------------------------- */
|
|
/** \name Asset Struct
|
|
* \{ */
|
|
|
|
#define _DNA_DEFAULT_AssetMetaData \
|
|
{ \
|
|
0 \
|
|
}
|
|
|
|
#define _DNA_DEFAULT_AssetLibraryReference \
|
|
{ \
|
|
.type = ASSET_LIBRARY_LOCAL, \
|
|
/* Not needed really (should be ignored for anything but #ASSET_LIBRARY_CUSTOM), but helps debugging. */ \
|
|
.custom_library_index = -1, \
|
|
}
|
|
|
|
/** \} */
|
|
|
|
/* clang-format on */
|