Open SirNate0 opened 1 year ago
The samples set two different window titles:
In Sample::Setup(): https://github.com/u3d-community/U3D/blob/011843ef9f1ea6216581aecd67b7370aab35c4f0/Source/Samples/Sample.inl#L60
Sample::Setup()
In Sample::Start() (via Sample::SetWindowTitleAndIcon()) https://github.com/u3d-community/U3D/blob/011843ef9f1ea6216581aecd67b7370aab35c4f0/Source/Samples/Sample.inl#L199
Sample::Start()
Sample::SetWindowTitleAndIcon()
Hardly a breaking issue, but one of them should be removed. I would prefer the second, but only because I use a sample as a base for my own projects, and I can overwrite the samples engineParameters_ in my own Setup() function.
engineParameters_
Setup()
The samples set two different window titles:
In
Sample::Setup()
: https://github.com/u3d-community/U3D/blob/011843ef9f1ea6216581aecd67b7370aab35c4f0/Source/Samples/Sample.inl#L60In
Sample::Start()
(viaSample::SetWindowTitleAndIcon()
) https://github.com/u3d-community/U3D/blob/011843ef9f1ea6216581aecd67b7370aab35c4f0/Source/Samples/Sample.inl#L199Hardly a breaking issue, but one of them should be removed. I would prefer the second, but only because I use a sample as a base for my own projects, and I can overwrite the samples
engineParameters_
in my ownSetup()
function.