Hi people!
I have created a transparent overlay in Direct3D. I can not interact with the mouse in the game only. In C# I have solved with the code. How do I do that in Direct3D?
C# solution:
I have created a transparent overlay in Direct3D. I can not interact with the mouse in the game only. In C# I have solved with the code. How do I do that in Direct3D?
C# solution:
PHP Code:
protected override CreateParams CreateParams
{
get
{
new SecurityPermission( SecurityPermissionFlag.UnmanagedCode ).Demand();
CreateParams CP = base.CreateParams;
CP.ExStyle = CP.ExStyle | 0x00000020;
return CP;
}
}
Aucun commentaire:
Enregistrer un commentaire