Metadata-Version: 2.1
Name: pydefold
Version: 1.0.5
Summary: Python Package made by Mhadhbi Issam . 
Home-page: https://gitlab.com/game-dev-comapny/libraries/pydefold
Author: Mhadhbi Issam
Author-email: mhadhbixissam@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: protobuf

# pydefold-collection



## Getting started

### Install  : 
```bash 
pip install  PyDefold
```

### Example
```python 

from PyDefold.gameobject import  *
import json
import os , sys 

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
  }
}
'''

: 
content = None 
with open(file) as buff : content = buff.read()
collection = CollectionDesc()
Parse(content , collection)
print(MessageToString(collection))


embedded_instances = collection.embedded_instances
print(MessageToString(embedded_instances[0].data))

```
