Skip to main content

DeathReportProcessor

Handles shared observable subscription tables for the client and server

Functions

ObservePlayerKillerReports

DeathReportProcessor.ObservePlayerKillerReports() → Observable<DeathReport>

Observes killer reports for the given player

ObservePlayerDeathReports

DeathReportProcessor.ObservePlayerDeathReports() → Observable<DeathReport>

Observes death reports for the given player

ObserveHumanoidDeathReports

DeathReportProcessor.ObserveHumanoidDeathReports() → Observable<DeathReport>

Observes death reports for the given humanoid

ObserveHumanoidKillerReports

DeathReportProcessor.ObserveHumanoidKillerReports() → Observable<DeathReport>

Observes killer reports for the given humanoid

ObserveCharacterKillerReports

DeathReportProcessor.ObserveCharacterKillerReports(
characterModel
) → Observable<DeathReport>

Observes killer reports for the given character

ObserveCharacterDeathReports

DeathReportProcessor.ObserveCharacterDeathReports(
characterModel
) → Observable<DeathReport>

Observes killer reports for the given character

HandleDeathReport

DeathReportProcessor.HandleDeathReport(
deathReportDeathReport
) → ()

Handles the death report

Show raw api
{
    "functions": [
        {
            "name": "ObservePlayerKillerReports",
            "desc": "Observes killer reports for the given player",
            "params": [
                {
                    "name": "self",
                    "desc": "",
                    "lua_type": "DeathReportProcessor"
                },
                {
                    "name": "player",
                    "desc": "",
                    "lua_type": "Player"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Observable<DeathReport>"
                }
            ],
            "function_type": "static",
            "source": {
                "line": 57,
                "path": "src/deathreport/src/Shared/DeathReportProcessor.lua"
            }
        },
        {
            "name": "ObservePlayerDeathReports",
            "desc": "Observes death reports for the given player",
            "params": [
                {
                    "name": "self",
                    "desc": "",
                    "lua_type": "DeathReportProcessor"
                },
                {
                    "name": "player",
                    "desc": "",
                    "lua_type": "Player"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Observable<DeathReport>"
                }
            ],
            "function_type": "static",
            "source": {
                "line": 72,
                "path": "src/deathreport/src/Shared/DeathReportProcessor.lua"
            }
        },
        {
            "name": "ObserveHumanoidDeathReports",
            "desc": "Observes death reports for the given humanoid",
            "params": [
                {
                    "name": "self",
                    "desc": "",
                    "lua_type": "DeathReportProcessor"
                },
                {
                    "name": "humanoid",
                    "desc": "",
                    "lua_type": "Humanoid"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Observable<DeathReport>"
                }
            ],
            "function_type": "static",
            "source": {
                "line": 87,
                "path": "src/deathreport/src/Shared/DeathReportProcessor.lua"
            }
        },
        {
            "name": "ObserveHumanoidKillerReports",
            "desc": "Observes killer reports for the given humanoid",
            "params": [
                {
                    "name": "self",
                    "desc": "",
                    "lua_type": "DeathReportProcessor"
                },
                {
                    "name": "humanoid",
                    "desc": "",
                    "lua_type": "Humanoid"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Observable<DeathReport>"
                }
            ],
            "function_type": "static",
            "source": {
                "line": 102,
                "path": "src/deathreport/src/Shared/DeathReportProcessor.lua"
            }
        },
        {
            "name": "ObserveCharacterKillerReports",
            "desc": "Observes killer reports for the given character",
            "params": [
                {
                    "name": "self",
                    "desc": "",
                    "lua_type": "DeathReportProcessor"
                },
                {
                    "name": "character",
                    "desc": "",
                    "lua_type": "Model"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Observable<DeathReport>"
                }
            ],
            "function_type": "static",
            "source": {
                "line": 117,
                "path": "src/deathreport/src/Shared/DeathReportProcessor.lua"
            }
        },
        {
            "name": "ObserveCharacterDeathReports",
            "desc": "Observes killer reports for the given character",
            "params": [
                {
                    "name": "self",
                    "desc": "",
                    "lua_type": "DeathReportProcessor"
                },
                {
                    "name": "character",
                    "desc": "",
                    "lua_type": "Model"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Observable<DeathReport>"
                }
            ],
            "function_type": "static",
            "source": {
                "line": 132,
                "path": "src/deathreport/src/Shared/DeathReportProcessor.lua"
            }
        },
        {
            "name": "HandleDeathReport",
            "desc": "Handles the death report",
            "params": [
                {
                    "name": "self",
                    "desc": "",
                    "lua_type": "DeathReportProcessor"
                },
                {
                    "name": "deathReport",
                    "desc": "",
                    "lua_type": "DeathReport"
                }
            ],
            "returns": [],
            "function_type": "static",
            "source": {
                "line": 147,
                "path": "src/deathreport/src/Shared/DeathReportProcessor.lua"
            }
        }
    ],
    "properties": [],
    "types": [],
    "name": "DeathReportProcessor",
    "desc": "Handles shared observable subscription tables for the client and server",
    "source": {
        "line": 7,
        "path": "src/deathreport/src/Shared/DeathReportProcessor.lua"
    }
}