I'm trying to create a plugin to capture the data send from slimevr to iclone. so i don't need to use BVH convert in blender and send to iclone. but before i got there. I'm learning how to create plugin first
I'm a c# developer for almost a decade. So i just started to create the plugin right away.
I saw this code
from here https://wiki.reallusion.com/IC_Python_API:Animating_A_CharacterBut
my problem is where can i find the result of the PRINT which view will it be shown?
import math, RLPy#-- Get Characters from current scene --#avatar_list = RLPy.RScene.GetAvatars()#-- Get First Character --#avatar = avatar_list[0]#-- Get Skin Bone Data --#skin_bone = avatar.GetSkeletonComponent().GetSkinBones()#-- Get Motion Bone Data --#motion_bone = avatar.GetSkeletonComponent().GetMotionBones()for bone in skin_bone: print ("Skin Bone: " + bone.GetName())for bone in motion_bone: print ("Motion Bone: " + bone.GetName())