Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenloader/intern/versioning_300.cc
| Show First 20 Lines • Show All 3,671 Lines • ▼ Show 20 Lines | if (!MAIN_VERSION_ATLEAST(bmain, 304, 6)) { | ||||
| } | } | ||||
| } | } | ||||
| if (!MAIN_VERSION_ATLEAST(bmain, 305, 1)) { | if (!MAIN_VERSION_ATLEAST(bmain, 305, 1)) { | ||||
| LISTBASE_FOREACH (bNodeTree *, ntree, &bmain->nodetrees) { | LISTBASE_FOREACH (bNodeTree *, ntree, &bmain->nodetrees) { | ||||
| if (ntree->type != NTREE_GEOMETRY) { | if (ntree->type != NTREE_GEOMETRY) { | ||||
| continue; | continue; | ||||
| } | } | ||||
| /* D16394 change socket name to do it more consistent as other nodes that generate instances | |||||
| * output. */ | |||||
| version_node_socket_name(ntree, GEO_NODE_COLLECTION_INFO, "Geometry", "Instances"); | version_node_socket_name(ntree, GEO_NODE_COLLECTION_INFO, "Geometry", "Instances"); | ||||
| /* D16396 name to make navigation easier for beginner users. */ | |||||
| version_node_id(ntree, GEO_NODE_TRANSFORM_GEOMETRY, "GeometryNodeTransformGeometry"); | |||||
Moder: Does it mean to keep this old name for python compatibility? | |||||
HooglyBooglyUnsubmitted Not Done Inline ActionsYeah, it would mean this patch wouldn't require any versioning AFAIK HooglyBoogly: Yeah, it would mean this patch wouldn't require any versioning AFAIK | |||||
| } | } | ||||
| } | } | ||||
| /** | /** | ||||
| * Versioning code until next subversion bump goes here. | * Versioning code until next subversion bump goes here. | ||||
| * | * | ||||
| * \note Be sure to check when bumping the version: | * \note Be sure to check when bumping the version: | ||||
| * - "versioning_userdef.c", #blo_do_versions_userdef | * - "versioning_userdef.c", #blo_do_versions_userdef | ||||
| * - "versioning_userdef.c", #do_versions_theme | * - "versioning_userdef.c", #do_versions_theme | ||||
| * | * | ||||
| * \note Keep this message at the bottom of the function. | * \note Keep this message at the bottom of the function. | ||||
| */ | */ | ||||
| { | { | ||||
| /* Keep this block, even when empty. */ | /* Keep this block, even when empty. */ | ||||
| } | } | ||||
| } | } | ||||
Does it mean to keep this old name for python compatibility?