Thread: 3D item models
View Single Post
11-06-23, 06:55 PM   #1
lla
A Murloc Raider
Join Date: Sep 2021
Posts: 4
3D item models

Hey,

I would like to ask is it possible to display only the item models (without the PlayerModel) for Character item slots?
Like for CharacterHeadSlot, CharacterChestSlot, CharacterLegsSlot etc..

I tried something like:
local model = CreateFrame("PlayerModel")
model:SetPoint("CENTER")
model:SetSize(500, 500)
model:SetRotation(math.rad(50))
local itemID = GetInventoryItemID("player", 3)
model:SetItem(itemID)
But this only displays the weapon and shoulder models for some reason

Many thanks in advance.

Last edited by lla : 11-06-23 at 07:09 PM.
  Reply With Quote