Replies: 8 comments 5 replies
-
First passimport cgm.core.mrs.ShapeDat as SHAPEDAT
reload(SHAPEDAT)
mBlockTarget = cgmMeta.asMeta('staff_handle_shaperList_handleBlock')
sDat = SHAPEDAT.dat_get(mBlock)
SHAPEDAT.dat_set(mBlockTarget, sDat)
pprint.pprint(sDat)
mSource = cgmMeta.asMeta('staff_limb_2_1_shapeHandle')
mTar = cgmMeta.asMeta('staff_limb_2_0_shapeHandle')
dat = SHAPEDAT.shapes_get(mSource)
dat['os']
SHAPEDAT.shapes_set(mTar,dat) |
Beta Was this translation helpful? Give feedback.
-
Loading to new
|
Beta Was this translation helpful? Give feedback.
-
How to store a relative point of dataThe continual problem I've had with trying to figure out how to store and load block dat is one of consistency. Matrix or relative matrix data can introduce shear and I've been unable to get consistent results because matrices require replicating the same heirarchy for consistent results. As such I've been noodling with how to consistently store a given point relative to a block root for some time. My current thinking is the best way will be:
|
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
7.20Wanna try this relative setup... import cgm.core.mrs.ShapeDat as SHAPEDAT
reload(SHAPEDAT)
_target = 'relative_target'
_start = 'relative_start'
_end = 'relative_end'
d = SHAPEDAT.relativePointDat_getFromObjs(_target,_start,_end)
_targetMove = 'relative_target2'
SHAPEDAT.relativePointDat_setFromObjs(_targetMove,_start,_end, d) |
Beta Was this translation helpful? Give feedback.
-
Continuing to the conversation from discord here: male and female needs enough form handles and sub handles to indicate the chest area. I find the female characters need more for the bust. |
Beta Was this translation helpful? Give feedback.
-
Weekend 7.31
Cases
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
Working through a new ShapeDat setup to be able to transfer shapes between assets.
There's a number of things we need to gather up.
Beta Was this translation helpful? Give feedback.
All reactions