- Thread starter
- Moderator
- #11
I'm pretty much done with the code, took the time to fix quite a bit of broken attributes. Just need to make sure every scale/aspect ratio/crop situation is working as it should.
When I'm done you'll be able to use these methods:
One:
Two:
And of course the normal XML method in a skin-file, where I fixed position and size (was never read by the method).
When I'm done you'll be able to use these methods:
One:
Code:
public override void AllocResources()
{
base.AllocResources();
mymulti = new GUIMultiImage(5678, 998, 600, 500, 100, 100, "TV", 1000, 1000, true, true);
mymulti.AllocResources();
}
public override void Render(float timePassed)
{
base.Render(timePassed);
mymulti.Render(timePassed);
}
Two:
Code:
GUIPropertyManager.SetProperty("#bgpath", "TV");
And of course the normal XML method in a skin-file, where I fixed position and size (was never read by the method).