Skip to content

Commit

Permalink
Improving formatting of functions
Browse files Browse the repository at this point in the history
  • Loading branch information
decacis committed Oct 11, 2023
1 parent 18671f5 commit e3c21cc
Show file tree
Hide file tree
Showing 13 changed files with 98 additions and 76 deletions.
4 changes: 3 additions & 1 deletion docs/functions/abuse-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ This signal will be emitted when the user presses the abuse report button. You t
////

------
## abuse_report_request_handled
## Functions

### abuse_report_request_handled
//// admonition | abuse_report_request_handled(report_request_response : `ReportRequestResponse`)
type: abstract

Expand Down
16 changes: 9 additions & 7 deletions docs/functions/achievements.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Related Oculus Platform documentation:
- [https://developer.oculus.com/documentation/native/ps-achievements/](https://developer.oculus.com/documentation/native/ps-achievements/)

------
## achievements_add_count
## Functions

### achievements_add_count
//// admonition | achievements_add_count(achievement_name : `String`, count : `int`)
type: abstract

Expand Down Expand Up @@ -35,7 +37,7 @@ GDOculusPlatform.achievements_add_count("my_count_achievement", 5)\
///
////

## achievements_add_fields
### achievements_add_fields
//// admonition | achievements_add_fields(achievement_name : `String`, fields : `String`)
type: abstract

Expand Down Expand Up @@ -66,7 +68,7 @@ GDOculusPlatform.achievements_add_fields("my_bitfield_achievement", "0011")\
///
////

## achievements_unlock
### achievements_unlock
//// admonition | achievements_unlock(achievement_name : `String`)
type: abstract

Expand Down Expand Up @@ -97,7 +99,7 @@ GDOculusPlatform.achievements_unlock("my_simple_achievement")\
///
////

## achievements_get_all_definitions
### achievements_get_all_definitions
//// admonition | achievements_get_all_definitions()
type: abstract

Expand Down Expand Up @@ -160,7 +162,7 @@ GDOculusPlatform.achievements_get_all_definitions()\
///
////

## achievements_get_all_progress
### achievements_get_all_progress
//// admonition | achievements_get_all_progress()
type: abstract

Expand Down Expand Up @@ -229,7 +231,7 @@ GDOculusPlatform.achievements_get_all_progress()\
///
////

## achievements_get_definitions_by_name
### achievements_get_definitions_by_name
//// admonition | achievements_get_definitions_by_name(achievement_names : `Array`)
type: abstract

Expand Down Expand Up @@ -261,7 +263,7 @@ GDOculusPlatform.achievements_get_definitions_by_name(achievements_n)\
///
////

## achievements_get_progress_by_name
### achievements_get_progress_by_name
//// admonition | achievements_get_progress_by_name(achievement_names : `Array`)
type: abstract

Expand Down
16 changes: 9 additions & 7 deletions docs/functions/application.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ You should call [application_get_launch_details](#application_get_launch_details
////

------
## application_get_version
## Functions

### application_get_version
//// admonition | application_get_version()
type: abstract

Expand Down Expand Up @@ -56,7 +58,7 @@ GDOculusPlatform.application_get_version()\
///
////

## application_launch_other_app
### application_launch_other_app
//// admonition | application_launch_other_app(app_id : `String`, deeplink_options : `Dictionary`)
type: abstract

Expand Down Expand Up @@ -94,7 +96,7 @@ GDOculusPlatform.application_launch_other_app("50125468232421", deeplink_options
///
////

## application_get_launch_details
### application_get_launch_details
//// admonition | application_get_launch_details()
type: abstract

Expand Down Expand Up @@ -156,7 +158,7 @@ if launch_details.launch_type == "DEEPLINK":
///
////

## application_start_app_download
### application_start_app_download
//// admonition | application_start_app_download()
type: abstract

Expand All @@ -178,7 +180,7 @@ GDOculusPlatform.application_start_app_download()\
///
////

## application_check_app_download_progress
### application_check_app_download_progress
//// admonition | application_check_app_download_progress()
type: abstract

Expand Down Expand Up @@ -211,7 +213,7 @@ GDOculusPlatform.application_check_app_download_progress()\
///
////

## application_cancel_app_download
### application_cancel_app_download
//// admonition | application_cancel_app_download()
type: abstract

Expand All @@ -233,7 +235,7 @@ GDOculusPlatform.application_cancel_app_download()\
///
////

## application_install_app_update_and_relaunch
### application_install_app_update_and_relaunch
//// admonition | application_install_app_update_and_relaunch(deeplink_options : `Dictionary`)
type: abstract

Expand Down
20 changes: 11 additions & 9 deletions docs/functions/asset-files.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ This signal will be emitted once the asset file has finished downloading. It wil
////

------
## assetfile_get_list
## Functions

### assetfile_get_list
//// admonition | assetfile_get_list()
type: abstract

Expand Down Expand Up @@ -113,7 +115,7 @@ GDOculusPlatform.assetfile_get_list()\
///
////

## assetfile_status_by_id
### assetfile_status_by_id
//// admonition | assetfile_status_by_id(asset_id : `String`)
type: abstract

Expand All @@ -140,7 +142,7 @@ GDOculusPlatform.assetfile_status_by_id("151548188744")\
///
////

## assetfile_status_by_name
### assetfile_status_by_name
//// admonition | assetfile_status_by_name(asset_name : `String`)
type: abstract

Expand All @@ -165,7 +167,7 @@ GDOculusPlatform.assetfile_status_by_name("my_asset_file.po")\
///
////

## assetfile_download_by_id
### assetfile_download_by_id
//// admonition | assetfile_download_by_id(asset_id : `String`)
type: abstract

Expand Down Expand Up @@ -211,7 +213,7 @@ func call_me_when_finished(asset_file_id : String):
///
////

## assetfile_download_by_name
### assetfile_download_by_name
//// admonition | assetfile_download_by_name(asset_name : `String`)
type: abstract

Expand Down Expand Up @@ -240,7 +242,7 @@ func call_me_when_finished(asset_file_id : String):
///
////

## assetfile_download_cancel_by_id
### assetfile_download_cancel_by_id
//// admonition | assetfile_download_cancel_by_id(asset_id : `String`)
type: abstract

Expand Down Expand Up @@ -280,7 +282,7 @@ GDOculusPlatform.assetfile_download_cancel_by_id("244752684352")\
///
////

## assetfile_download_cancel_by_name
### assetfile_download_cancel_by_name
//// admonition | assetfile_download_cancel_by_name(asset_name : `String`)
type: abstract

Expand All @@ -306,7 +308,7 @@ GDOculusPlatform.assetfile_download_cancel_by_name("my_asset_name.zip")\
///
////

## assetfile_delete_by_id
### assetfile_delete_by_id
//// admonition | assetfile_delete_by_id(asset_id : `String`)
type: abstract

Expand Down Expand Up @@ -346,7 +348,7 @@ GDOculusPlatform.assetfile_delete_by_id("774568224174")\
///
////

## assetfile_delete_by_name
### assetfile_delete_by_name
//// admonition | assetfile_delete_by_name(asset_name : `String`)
type: abstract

Expand Down
3 changes: 2 additions & 1 deletion docs/functions/attestation-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Related Oculus Platform documentation:
- [https://developer.oculus.com/documentation/native/ps-attestation-api/](https://developer.oculus.com/documentation/native/ps-attestation-api/)

------
## Functions

## deviceappintegrity_get_integrity_token
### deviceappintegrity_get_integrity_token
//// admonition | deviceappintegrity_get_integrity_token(challenge_nonce : `String`)
type: abstract

Expand Down
18 changes: 10 additions & 8 deletions docs/functions/challenges.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Related Oculus Platform documentation:
- [https://developer.oculus.com/documentation/native/ps-challenges/](https://developer.oculus.com/documentation/native/ps-challenges/)

------
## challenges_get
## Functions

### challenges_get
//// admonition | challenges_get(challenge_id : `String`)
type: abstract

Expand Down Expand Up @@ -85,7 +87,7 @@ GDOculusPlatform.challenges_get("511854451440")\
///
////

## challenges_get_list
### challenges_get_list
//// admonition | challenges_get_list(limit : `int`, challenge_options : `Dictionary`)
type: abstract

Expand Down Expand Up @@ -234,7 +236,7 @@ GDOculusPlatform.challenges_get_list(10, challenge_filters)\
///
////

## challenges_get_entries
### challenges_get_entries
//// admonition | challenges_get_entries(challenge_id : `String`, limit : `int`, filter : `LeaderboardFilterType`, start_at : `LeaderboardStartAt`)
type: abstract

Expand Down Expand Up @@ -316,7 +318,7 @@ leaderboard_info.start_at\
///
////

## challenge_get_entries_after_rank
### challenge_get_entries_after_rank
//// admonition | challenge_get_entries_after_rank(challenge_id : `String`, limit : `int`, after_rank : `int`)
type: abstract

Expand Down Expand Up @@ -368,7 +370,7 @@ challenge_info.after_rank\
///
////

## challenge_get_entries_by_ids
### challenge_get_entries_by_ids
//// admonition | challenge_get_entries_by_ids(challenge_id : `String`, limit : `int`, user_ids : `Array`, start_at : `LeaderboardStartAt`)
type: abstract

Expand Down Expand Up @@ -416,7 +418,7 @@ challenge_info.start_at\
///
////

## challenges_join
### challenges_join
//// admonition | challenges_join(challenge_id : `String`)
type: abstract

Expand All @@ -440,7 +442,7 @@ GDOculusPlatform.challenges_join("264822651547")\
///
////

## challenges_leave
### challenges_leave
//// admonition | challenges_leave(challenge_id : `String`)
type: abstract

Expand All @@ -464,7 +466,7 @@ GDOculusPlatform.challenges_leave("264822651547")\
///
////

## challenges_decline_invite
### challenges_decline_invite
//// admonition | challenges_decline_invite(challenge_id : `String`)
type: abstract

Expand Down
Loading

0 comments on commit e3c21cc

Please sign in to comment.