PocketMine-MP 5.39.3 git-400eb2dddf91a9c112aa09f3b498ffc8c85e98ed
Loading...
Searching...
No Matches
GraphicsOverrideParameterType.php
1<?php
2
3/*
4 * This file is part of BedrockProtocol.
5 * Copyright (C) 2014-2022 PocketMine Team <https://github.com/pmmp/BedrockProtocol>
6 *
7 * BedrockProtocol is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 */
12
13declare(strict_types=1);
14
15namespace pocketmine\network\mcpe\protocol\types;
16
17enum GraphicsOverrideParameterType : int{
18 use PacketIntEnumTrait;
19
20 case SKY_ZENITH_COLOR = 0;
21 case SKY_HORIZON_COLOR = 1;
22 case HORIZON_BLEND_MIN = 2;
23 case HORIZON_BLEND_MAX = 3;
24 case HORIZON_BLEND_START = 4;
25 case HORIZON_BLEND_MIE_START = 5;
26 case RAYLEIGH_STRENGTH = 6;
27 case SUN_MIE_STRENGTH = 7;
28 case MOON_MIE_STRENGTH = 8;
29 case SUN_GLARE_SHAPE = 9;
30}