InventoryGesture Class, details on a series of animations, sounds, and actions
Inheritance: InventoryItem
コード例 #1
0
ファイル: Guesture.cs プロジェクト: Booser/radegast
        public Guesture(RadegastInstance instance, InventoryGesture gesture)
        {
            InitializeComponent();
            Disposed += new EventHandler(Guesture_Disposed);

            if (!instance.advancedDebugging)
            {
                tbtnReupload.Visible = false;
            }

            this.instance = instance;
            this.gesture = gesture;

            // Start download
            tlblStatus.Text = "Downloading...";
            client.Assets.RequestAsset(gesture.AssetUUID, AssetType.Gesture, true, Assets_OnAssetReceived);
        }