You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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]
16 lines
477 B
Python
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")
|