Add files via upload

This commit is contained in:
Vishal 2023-12-24 18:18:44 +05:30 committed by GitHub
parent 03f42e2104
commit fb34365ea4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,6 +103,7 @@ from _bascenev1 import (
host_scan_cycle, host_scan_cycle,
InputDevice, InputDevice,
is_in_replay, is_in_replay,
is_replay_paused,
ls_input_devices, ls_input_devices,
ls_objects, ls_objects,
Material, Material,
@ -112,11 +113,13 @@ from _bascenev1 import (
newactivity, newactivity,
newnode, newnode,
Node, Node,
pause_replay,
printnodes, printnodes,
protocol_version, protocol_version,
release_gamepad_input, release_gamepad_input,
release_keyboard_input, release_keyboard_input,
reset_random_player_names, reset_random_player_names,
resume_replay,
broadcastmessage, broadcastmessage,
SessionData, SessionData,
SessionPlayer, SessionPlayer,
@ -352,6 +355,7 @@ __all__ = [
'IntSetting', 'IntSetting',
'is_in_replay', 'is_in_replay',
'is_point_in_box', 'is_point_in_box',
'is_replay_paused',
'JoinActivity', 'JoinActivity',
'Level', 'Level',
'Lobby', 'Lobby',
@ -374,6 +378,7 @@ __all__ = [
'normalized_color', 'normalized_color',
'NotFoundError', 'NotFoundError',
'OutOfBoundsMessage', 'OutOfBoundsMessage',
'pause_replay',
'PickedUpMessage', 'PickedUpMessage',
'PickUpMessage', 'PickUpMessage',
'Player', 'Player',
@ -394,6 +399,7 @@ __all__ = [
'release_gamepad_input', 'release_gamepad_input',
'release_keyboard_input', 'release_keyboard_input',
'reset_random_player_names', 'reset_random_player_names',
'resume_replay',
'safecolor', 'safecolor',
'screenmessage', 'screenmessage',
'SceneV1AppMode', 'SceneV1AppMode',
@ -463,4 +469,4 @@ if __debug__:
' should not happen.', ' should not happen.',
__name__, __name__,
_mdl, _mdl,
) )