Skip to content

Commit

Permalink
Print some stats in set appearance
Browse files Browse the repository at this point in the history
  • Loading branch information
ayourtch committed May 2, 2010
1 parent 08c46c1 commit b6f2a63
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions script/smvserver.lua
Expand Up @@ -823,6 +823,16 @@ function smv_agent_is_now_wearing(sess, d)
end
function smv_agent_set_appearance(sess, d)
local AgentID, SessionID, SerialNum, Size = fmv.Get_AgentSetAppearance_AgentData(d)
local szw = fmv.Get_AgentSetAppearance_WearableDataBlockSize(d)
local TextureEntry = fmv.Get_AgentSetAppearance_ObjectData(d)
local szv = fmv.Get_AgentSetAppearance_VisualParamBlockSize(d)
print("smv_agent_set_appearance for " .. AgentID .. " number " .. SerialNum .. " size " .. Size)
print("szw: ", szw)
print("szv: ", szv)
print("txe: ", #TextureEntry)
end
function smv_agent_animation(sess, d)
Expand Down

0 comments on commit b6f2a63

Please sign in to comment.