-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Welcome to the VsPyYt wiki!
quick msg never remove or change websocket in the functions
getmd(websocket)
if you use this the console will print out all information about the loaded model
you can also do the code below to get specific data
data the function handels page
model1 = getmd(websocket)
model1id = model1["data"]["modelID"]#note this can also be used in the other fuctions
print(model1id)
getstate(websocket)
if you use this the console will print out all information about vtube studio
you can also do the code below to get specific data
data the function handels page
stat = getstate(websocket)
statistic = stat["data"]["uptime"]
print(statistic)
getvtsfolder(websocket)
if you use this the console will print out all information about thhe vtube studio directory
you can also do the code below to get specific data
data the function handles page
stat = getstate(websocket)
bg = stat["data"]["backgrounds"]
items = stat["data"]["items"]
models = stat["data"]["models"]
print(bg)
print(items)
print(models)
listvtsmodel(websocket)
if you use this the console will print out data about all models loaded in vtube studio
you can also do the code below to get specific data
data the function handels page
md = listvtsmodel(websocket)
statistic = md["data"]["numberOfModels"]
mdnames = md["data"]["availableModels"]["modelName"]
mdids = md["data"]["availableModels"]["modelID"]
availableModels
print(statistic)
print(mdnames)
print(mdids)
mdch(websocket,mdid)
listArtM(websocket,mdid)
mdmv(websocket,time,revelance,xp,yp,rot,size)
TintArtM(websocket,r,g,b,a,tintall,num,exactarray,conarray,tagexactarray,tagconarray)