您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
47 行
1.9 KiB
47 行
1.9 KiB
# @generated by generate_proto_mypy_stubs.py. Do not edit!
|
|
import sys
|
|
from google.protobuf.descriptor import (
|
|
Descriptor as google___protobuf___descriptor___Descriptor,
|
|
)
|
|
|
|
from google.protobuf.message import (
|
|
Message as google___protobuf___message___Message,
|
|
)
|
|
|
|
from typing import (
|
|
Optional as typing___Optional,
|
|
)
|
|
|
|
from typing_extensions import (
|
|
Literal as typing_extensions___Literal,
|
|
)
|
|
|
|
|
|
builtin___bool = bool
|
|
builtin___bytes = bytes
|
|
builtin___float = float
|
|
builtin___int = int
|
|
|
|
|
|
class UnityRLCapabilitiesProto(google___protobuf___message___Message):
|
|
DESCRIPTOR: google___protobuf___descriptor___Descriptor = ...
|
|
baseRLCapabilities = ... # type: builtin___bool
|
|
concatenatedPngObservations = ... # type: builtin___bool
|
|
compressedChannelMapping = ... # type: builtin___bool
|
|
hybridActions = ... # type: builtin___bool
|
|
|
|
def __init__(self,
|
|
*,
|
|
baseRLCapabilities : typing___Optional[builtin___bool] = None,
|
|
concatenatedPngObservations : typing___Optional[builtin___bool] = None,
|
|
compressedChannelMapping : typing___Optional[builtin___bool] = None,
|
|
hybridActions : typing___Optional[builtin___bool] = None,
|
|
) -> None: ...
|
|
@classmethod
|
|
def FromString(cls, s: builtin___bytes) -> UnityRLCapabilitiesProto: ...
|
|
def MergeFrom(self, other_msg: google___protobuf___message___Message) -> None: ...
|
|
def CopyFrom(self, other_msg: google___protobuf___message___Message) -> None: ...
|
|
if sys.version_info >= (3,):
|
|
def ClearField(self, field_name: typing_extensions___Literal[u"baseRLCapabilities",u"compressedChannelMapping",u"concatenatedPngObservations",u"hybridActions"]) -> None: ...
|
|
else:
|
|
def ClearField(self, field_name: typing_extensions___Literal[u"baseRLCapabilities",b"baseRLCapabilities",u"compressedChannelMapping",b"compressedChannelMapping",u"concatenatedPngObservations",b"concatenatedPngObservations",u"hybridActions",b"hybridActions"]) -> None: ...
|