add border in bme
This commit is contained in:
parent
9315ff723d
commit
c5ce6e8a2c
@ -293,11 +293,11 @@ def create_bme_struct(
|
|||||||
# if NOT skip, add into valid list
|
# if NOT skip, add into valid list
|
||||||
valid_vec_idx: list[int] = []
|
valid_vec_idx: list[int] = []
|
||||||
for vec_idx, proto_vec in enumerate(proto[TOKEN_VERTICES]):
|
for vec_idx, proto_vec in enumerate(proto[TOKEN_VERTICES]):
|
||||||
if not _eval_others(proto_vec[TOKEN_VERTICES_SKIP], params):
|
if _eval_others(proto_vec[TOKEN_VERTICES_SKIP], params) == False:
|
||||||
valid_vec_idx.append(vec_idx)
|
valid_vec_idx.append(vec_idx)
|
||||||
valid_face_idx: list[int] = []
|
valid_face_idx: list[int] = []
|
||||||
for face_idx, proto_face in enumerate(proto[TOKEN_FACES]):
|
for face_idx, proto_face in enumerate(proto[TOKEN_FACES]):
|
||||||
if not _eval_others(proto_face[TOKEN_FACES_SKIP], params):
|
if _eval_others(proto_face[TOKEN_FACES_SKIP], params) == False:
|
||||||
valid_face_idx.append(face_idx)
|
valid_face_idx.append(face_idx)
|
||||||
|
|
||||||
# create mtl slot remap to help following mesh adding
|
# create mtl slot remap to help following mesh adding
|
||||||
@ -395,6 +395,10 @@ def create_bme_struct(
|
|||||||
# add current face indices count to internal counter
|
# add current face indices count to internal counter
|
||||||
face_counter += indices_count
|
face_counter += indices_count
|
||||||
|
|
||||||
|
# fill texture data
|
||||||
|
mtl_name: str = _eval_others(face_data[TOKEN_FACES_TEXTURE], params)
|
||||||
|
f.mMtlIdx = mtl_remap[mtl_name]
|
||||||
|
|
||||||
# return data once
|
# return data once
|
||||||
yield f
|
yield f
|
||||||
mesh_part.mFace = face_iterator()
|
mesh_part.mFace = face_iterator()
|
||||||
@ -403,6 +407,10 @@ def create_bme_struct(
|
|||||||
|
|
||||||
# then we incursively process instance creation
|
# then we incursively process instance creation
|
||||||
for proto_instance in proto[TOKEN_INSTANCES]:
|
for proto_instance in proto[TOKEN_INSTANCES]:
|
||||||
|
# check whether skip this instance
|
||||||
|
if _eval_others(proto_instance[TOKEN_INSTANCES_SKIP], params) == True:
|
||||||
|
continue
|
||||||
|
|
||||||
# calc instance params
|
# calc instance params
|
||||||
instance_params: dict[str, typing.Any] = {}
|
instance_params: dict[str, typing.Any] = {}
|
||||||
proto_instance_params: dict[str, str] = proto_instance[TOKEN_INSTANCES_PARAMS]
|
proto_instance_params: dict[str, str] = proto_instance[TOKEN_INSTANCES_PARAMS]
|
||||||
@ -414,6 +422,7 @@ def create_bme_struct(
|
|||||||
proto_instance[TOKEN_INSTANCES_IDENTIFIER],
|
proto_instance[TOKEN_INSTANCES_IDENTIFIER],
|
||||||
writer,
|
writer,
|
||||||
bmemtl,
|
bmemtl,
|
||||||
|
# left-mul transform, because self transform should be applied first, the apply parent's transform
|
||||||
transform @ _eval_others(proto_instance[TOKEN_INSTANCES_TRANSFORM], params),
|
transform @ _eval_others(proto_instance[TOKEN_INSTANCES_TRANSFORM], params),
|
||||||
instance_params
|
instance_params
|
||||||
)
|
)
|
||||||
|
BIN
bbp_ng/raw_jsons/borders.json
Normal file
BIN
bbp_ng/raw_jsons/borders.json
Normal file
Binary file not shown.
BIN
bbp_ng/raw_jsons/sides.json
Normal file
BIN
bbp_ng/raw_jsons/sides.json
Normal file
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user