feat: bump replication version
feat: hack to use replication without installation
This commit is contained in:
@ -13,7 +13,7 @@ __all__ = [
|
|||||||
] # Order here defines execution order
|
] # Order here defines execution order
|
||||||
|
|
||||||
from . import *
|
from . import *
|
||||||
from ..libs.replication.data import ReplicatedDataFactory
|
from ..libs.replication.replication.data import ReplicatedDataFactory
|
||||||
|
|
||||||
def types_to_register():
|
def types_to_register():
|
||||||
return __all__
|
return __all__
|
||||||
|
@ -2,7 +2,7 @@ import bpy
|
|||||||
import mathutils
|
import mathutils
|
||||||
|
|
||||||
from .. import utils
|
from .. import utils
|
||||||
from ..libs.replication.data import ReplicatedDatablock
|
from ..libs.replication.replication.data import ReplicatedDatablock
|
||||||
|
|
||||||
class BlDatablock(ReplicatedDatablock):
|
class BlDatablock(ReplicatedDatablock):
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
|
@ -4,7 +4,7 @@ import mathutils
|
|||||||
from .. import utils
|
from .. import utils
|
||||||
from .. import presence
|
from .. import presence
|
||||||
from .bl_datablock import BlDatablock
|
from .bl_datablock import BlDatablock
|
||||||
from ..libs.replication.constants import UP
|
from ..libs.replication.replication.constants import UP
|
||||||
from ..libs.debug import draw_point
|
from ..libs.debug import draw_point
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ import bpy
|
|||||||
from . import operators, utils
|
from . import operators, utils
|
||||||
from .bl_types.bl_user import BlUser
|
from .bl_types.bl_user import BlUser
|
||||||
from .libs import debug
|
from .libs import debug
|
||||||
from .libs.replication.constants import FETCHED
|
from .libs.replication.replication.constants import FETCHED
|
||||||
|
|
||||||
|
|
||||||
class Delayable():
|
class Delayable():
|
||||||
|
Submodule libs/replication updated: 200821a512...929f624919
@ -15,8 +15,8 @@ from bpy_extras.io_utils import ExportHelper
|
|||||||
|
|
||||||
from . import environment, presence, ui, utils, delayable
|
from . import environment, presence, ui, utils, delayable
|
||||||
from .libs import umsgpack
|
from .libs import umsgpack
|
||||||
from .libs.replication.data import ReplicatedDataFactory
|
from .libs.replication.replication.data import ReplicatedDataFactory
|
||||||
from .libs.replication.interface import Session
|
from .libs.replication.replication.interface import Session
|
||||||
from . import bl_types
|
from . import bl_types
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
Reference in New Issue
Block a user