mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-18 14:08:19 +00:00
a9fc2207ac
Parallax Zoom improves the appearance of maps visually when zooming. Contrary to initial tests, it does not interfere with certain map locations such as the shop on the map Timeshop. The default value appears to be correct for all existing maps. The value in the map file is non-trivial to manage, and provides little benefit. See https://github.com/ddnet/ddnet/issues/6196 for further discussion.
11 lines
225 B
C++
11 lines
225 B
C++
#include "mapitems_ex.h"
|
|
|
|
#include <engine/shared/uuid_manager.h>
|
|
|
|
void RegisterMapItemTypeUuids(CUuidManager *pManager)
|
|
{
|
|
#define UUID(id, name) pManager->RegisterName(id, name);
|
|
#include "mapitems_ex_types.h"
|
|
#undef UUID
|
|
}
|