Defold protobuff compiled to python package
Project description
defoldsdk
defold protbuff python
installling
pip install defoldsdk
usage :
all proto objects are under the namespace sdk
from defoldsdk import sdk
for i in sdk :
print(i)
x = sdk.Texture()
example load collection from string
from defoldsdk import sdk
from google.protobuf.json_format import MessageToJson
from google.protobuf.text_format import MessageToString, Parse
content = '''
name: "menu"
scale_along_z: 0
embedded_instances {
id: "go"
data: "components {\\n"
" id: \\"menu\\"\\n"
" component: \\"/examples/collection/proxy/menu.gui\\"\\n"
" position {\\n"
" x: 0.0\\n"
" y: 0.0\\n"
" z: 0.0\\n"
" }\\n"
" rotation {\\n"
" x: 0.0\\n"
" y: 0.0\\n"
" z: 0.0\\n"
" w: 1.0\\n"
" }\\n"
"}\\n"
""
position {
x: 0.0
y: 0.0
z: 0.0
}
rotation {
x: 0.0
y: 0.0
z: 0.0
w: 1.0
}
scale3 {
x: 1.0
y: 1.0
z: 1.0
}
}
'''
collection = sdk.CollectionDesc()
Parse(content.encode('utf-8'), collection)
print(MessageToString(collection))
print(MessageToJson(collection,preserving_proto_field_name=True))
output :
name: "menu"
scale_along_z: 0
embedded_instances {
id: "go"
data: "components {\n id: \"menu\"\n component: \"/examples/collection/proxy/menu.gui\"\n position {\n x: 0.0\n y: 0.0\n z: 0.0\n }\n rotation {\n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0\n }\n}\n"
position {
x: 0.0
y: 0.0
z: 0.0
}
rotation {
x: 0.0
y: 0.0
z: 0.0
w: 1.0
}
scale3 {
x: 1.0
y: 1.0
z: 1.0
}
}
{
"name": "menu",
"scale_along_z": 0,
"embedded_instances": [
{
"id": "go",
"data": "components {\n id: \"menu\"\n component: \"/examples/collection/proxy/menu.gui\"\n position {\n x: 0.0\n y: 0.0\n z: 0.0\n }\n rotation {\n x: 0.0\n y: 0.0\n z: 0.0\n w: 1.0\n }\n}\n",
"position": {
"x": 0.0,
"y": 0.0,
"z": 0.0
},
"rotation": {
"x": 0.0,
"y": 0.0,
"z": 0.0,
"w": 1.0
},
"scale3": {
"x": 1.0,
"y": 1.0,
"z": 1.0
}
}
]
}```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
defoldsdk-1.3.4.tar.gz
(29.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
defoldsdk-1.3.4-py3-none-any.whl
(47.1 kB
view details)
File details
Details for the file defoldsdk-1.3.4.tar.gz.
File metadata
- Download URL: defoldsdk-1.3.4.tar.gz
- Upload date:
- Size: 29.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daade6cea9c1f445d043e1e83f185598b8e062b87569ec6bca41962227d4e852
|
|
| MD5 |
2aa8982b609e187edb4a47f3b132218b
|
|
| BLAKE2b-256 |
a443944e52b36ab5348e585f6d3f5de7bf1cb123432dcd57a48319aacf3443d9
|
File details
Details for the file defoldsdk-1.3.4-py3-none-any.whl.
File metadata
- Download URL: defoldsdk-1.3.4-py3-none-any.whl
- Upload date:
- Size: 47.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a75f16ea0fe3a1c850e1032b6d6c6e36fa121b898d4ef3e3af51bde34192b9d6
|
|
| MD5 |
384ed1ee91493ee779ed9dd31829410e
|
|
| BLAKE2b-256 |
65aad9039750748104b26903c771e4e084021636f2cc599f050a838b60f398ae
|