Ejemplo n.º 1
0
        private void OnTextureSelected(object sender, EventArgs e)
        {
            OnyxProjectAsset textureEntry = mTextureIds[listViewTextures.SelectedItems[0].Index];

            SelectedTexture = new Texture(textureEntry.Path);
            TextureSelected.Invoke(this, null);
            Close();
        }
Ejemplo n.º 2
0
 private void OnTextureSelected(object sender, EventArgs e)
 {
     SelectedTexture = mTextureIds[listViewTextures.SelectedItems[0].Index];
     TextureSelected.Invoke(this, null);
     Close();
 }