Moved cdefs one module up

This commit is contained in:
Sybren A. Stüvel 2018-03-02 13:36:08 +01:00
parent 7167d51730
commit 8bb130d336
3 changed files with 7 additions and 4 deletions

View File

@ -53,3 +53,6 @@ PTCACHE_EXTERNAL = 512
# BKE_pointcache.h
PTCACHE_EXT = b'.bphys'
PTCACHE_PATH = b'blendcache_'
# BKE_node.h
CMP_NODE_R_LAYERS = 221

View File

@ -7,9 +7,9 @@ import functools
import logging
import typing
from blender_asset_tracer import blendfile, bpathlib
from blender_asset_tracer import blendfile, bpathlib, cdefs
from blender_asset_tracer.blendfile import iterators
from . import result, cdefs, modifier_walkers
from . import result, modifier_walkers
log = logging.getLogger(__name__)

View File

@ -5,8 +5,8 @@ files used by the modifiers.
"""
import typing
from blender_asset_tracer import blendfile, bpathlib
from . import result, cdefs
from blender_asset_tracer import blendfile, bpathlib, cdefs
from . import result
def _modifier_filepath(modifier: blendfile.BlendFileBlock, block_name: bytes) \