This repository has been archived by the owner on Dec 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
''' | ||
Each time this file is split with this: | ||
## ----- Example: X ----- ## | ||
It will be treated as a new file/example | ||
''' | ||
|
||
## ----- Example: Change call Retry Count ----- ## | ||
|
||
''' | ||
Built in is retry logic for when VRChat disconnects a call with no response | ||
Default retries is 1 (so 1 call, then 1 retry if it fails) | ||
To change retry count, use the method below. | ||
''' | ||
|
||
from vrcpy.request import ACall | ||
|
||
ACall.call_retries = 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
''' | ||
Each time this file is split with this: | ||
## ----- Example: X ----- ## | ||
It will be treated as a new file/example | ||
''' | ||
|
||
## ----- Example: Change call Retry Count ----- ## | ||
|
||
''' | ||
Built in is retry logic for when VRChat disconnects a call with no response | ||
Default retries is 1 (so 1 call, then 1 retry if it fails) | ||
To change retry count, use the method below. | ||
''' | ||
|
||
from vrcpy.request import Call | ||
|
||
Call.call_retries = 5 |