# AniCheatMoveUnSupportRewind

class in mod.common.minecraftEnum

  • 描述

    反作弊配置枚举值,不支持倒带模拟的特殊场景相关参数

class AniCheatMoveUnSupportRewind(object):
	PositionThreshold = "player-rewind-unsupported-position-threshold"		# 某一帧中,客户端位置与服务端位置的距离平方阈值,超过阈值会触发反作弊纠正(float)
	VelocityThreshold = "player-rewind-unsupported-velocity-threshold"		# 某一帧中,客户端速度和服务端速度的差值平方阈值,超过这个阈值会触发反作弊纠正(float)
	PositionAcceptance = "player-rewind-unsupported-position-acceptance"	# 某一帧中,如果客户端位置和服务端位置的距离平方小于这个值,服务端会采用客户端的值(float)
	PositionPersuasion = "player-rewind-unsupported-position-persuasion"	# 如果客户端和服务端位置不一致,服务端会每帧在客户端的计算方向上加上这个值(float)