Files
UnrealEngineUWP/Engine/Source/Programs/UnrealMultiUserServer/Resources/Windows/make_ico.py
dominik peacock 39ca01eed3 Final UX improvements for Multi-User.
Non-code changes:
- Add taskbar icons for UnrealMultiUserServer (Windows, Mac, Linux)
- Update taskbar icons for UnrealMultiUserSlateServer (Windows, Mac, Linux)
- Adjust icon on the top-left corner of window UnrealMultiUserSlateServer
- Adjust the "Create Session" button icon (shown in editor)
- Adjust the "Close server" button icon (shown in editor)
Code change:
- Disable the "Create Session" button in UnrealMultiUserSlateServer
- Make the "Launch Server" button (shown in editor) launch the slate server by default instead of the console one

#jira UE-166219
#rb Jason.Walter
#lockdown Alejandro.Arango
#preflight 633eb5a8f171e4e68b6f2850

[CL 22388876 by dominik peacock in ue5-main branch]
2022-10-06 20:11:57 -04:00

16 lines
477 B
Python

# Copyright Epic Games, Inc. All Rights Reserved.
from PIL import Image
def MakeIcon(folder, output):
sizes = [256, 48, 32, 24, 16]
images = []
for size in sizes:
print(f"Loading {folder}/icon_{size}x{size}.png")
image = Image.open(f"{folder}/icon_{size}x{size}.png")
images.append(image)
print(f"Creating {output}")
images[0].save(f"{output}", append_images=images)
MakeIcon("UnrealMultiUserServer", "UnrealMultiUserServer.ico")