Skip to content

Commit 88c320a

Browse files
authored
Merge pull request #53 from arenaxr/rag_update
Rag update
2 parents 77063ee + e0fb600 commit 88c320a

File tree

215 files changed

+4845
-1286
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

215 files changed

+4845
-1286
lines changed

content/architecture/scenes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ARENA scenes include 3D content, configuration parameters, applications with sha
1111

1212
## Scene Objects
1313

14-
ARENA scenes are a collection of <i>Entities</i> to which <i>Components</i> can be attached, following [A-Frame’s Entity-Component-System (ECS) architecture](https://aframe.io/docs/1.5.0/introduction/entity-component-system.html). We support the majority of A-Frames’s primitives (e.g., geometries like boxes, circles, spheres) and components (attributes that can be attached to objects, such as position, rotation, material, sound). We also added ARENA-specific components for AR markers, programs, networked events, and options. All ARENA objects have well-defined schemas, which are the basis for the over-the-wire message format shown below (Figure 2) and are transmitted over the PubSub.
14+
ARENA scenes are a collection of <i>Entities</i> to which <i>Components</i> can be attached, following [A-Frame’s Entity-Component-System (ECS) architecture](https://aframe.io/docs/1.5.0/introduction/entity-component-system.html). We support the majority of A-Frames’s primitives (e.g., geometries like boxes, circles, spheres) and components (attributes that can be attached to objects, such as position, rotation, material, sound). We also added ARENA-specific components for AR markers, programs, networked events, and options. All ARENA objects have well-defined JSON schemas, which are the basis for the over-the-wire JSON message format shown below (Figure 2) and are transmitted over the PubSub.
1515

1616
```json
1717
{

content/examples.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -574,44 +574,44 @@ These effects are enabled in desktop and XR views. For reference, a list of [all
574574
[p-armarker]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/armarker.py
575575
[p-attribution]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/attribution.py
576576
[p-blip]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/blip.py
577-
[p-box-collision]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/box_collision.py
577+
[p-box-collision]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/box_collision_listener.py
578578
[p-box]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/box.py
579579
[p-camera]: https://github.com/arenaxr/arena-py/blob/master/examples/simple/camera-print.py
580580
[p-capsule]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/capsule.py
581581
[p-circle]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/circle.py
582-
[p-clickable]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/clickable.py
582+
[p-clickable]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/click_listener.py
583583
[p-collision]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/collision.py
584-
[p-color]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/color.py
584+
[p-color]: https://github.com/arenaxr/arena-py/blob/master/examples/basic/color.py
585585
[p-cone]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/cone.py
586586
[p-cylinder]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/cylinder.py
587587
[p-dodecahedron]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/dodecahedron.py
588-
[p-dynamic-body]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/physics_impulse.py
588+
[p-dynamic-body]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/dynamic_body.py
589589
[p-entity]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/entity.py
590590
[p-event]: /content/python/events#generating-events-with-arena-py-scenes
591-
[p-gltf-lod]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/model_lod.py
592-
[p-gltf-morph]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/morph.py
593-
[p-gltf]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/gltf.py
591+
[p-gltf-lod]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/gltf_model_lod.py
592+
[p-gltf-morph]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/gltf_morph.py
593+
[p-gltf]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/gltf_model.py
594594
[p-goto-landmark]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/goto_landmark.py
595595
[p-goto-url]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/goto_url.py
596596
[p-hands]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/hands.py
597597
[p-icosahedron]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/icosahedron.py
598598
[p-image]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/image.py
599-
[p-impulse]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/physics_impulse.py
599+
[p-impulse]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/impulse.py
600600
[p-jitsi-video]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/jitsi_video.py
601601
[p-landmark]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/landmark.py
602602
[p-light]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/light.py
603603
[p-line]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/line.py
604604
[p-look-at]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/look_at.py
605605
[p-material-ext]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/material_extras.py
606606
[p-material]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/material.py
607-
[p-modelUpdate]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/modelUpdate.py
607+
[p-modelUpdate]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/model_update.py
608608
[p-multisrc]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/multisrc.py
609609
[p-null]: /content/python/objects#removing-object-attributes
610610
[p-obj]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/obj_model.py
611611
[p-ocean]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/ocean.py
612612
[p-octahedron]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/octahedron.py
613-
[p-parent]: https://github.com/arenaxr/arena-py/blob/master/examples/simple/earth-moon.py
614-
[p-pcd]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/pcd.py
613+
[p-parent]: https://github.com/arenaxr/arena-py/blob/master/examples/basic/parent.py
614+
[p-pcd]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/pcd_model.py
615615
[p-plane]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/plane.py
616616
[p-position]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/position.py
617617
[p-ring]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/ring.py
@@ -621,22 +621,22 @@ These effects are enabled in desktop and XR views. For reference, a list of [all
621621
[p-screenshare]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/screenshare.py
622622
[p-shadow]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/shadow.py
623623
[p-sound]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/sound.py
624-
[p-spe-particles]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/particles.py
624+
[p-spe-particles]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/spe_particles.py
625625
[p-sphere]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/sphere.py
626-
[p-splat]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/splat.py
627-
[p-static-body]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/physics_impulse.py
626+
[p-splat]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/gaussian_splatting.py
627+
[p-static-body]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/static_body.py
628628
[p-tetrahedron]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/tetrahedron.py
629629
[p-text]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/text.py
630-
[p-textinput]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/text_input.py
630+
[p-textinput]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/textinput.py
631631
[p-thickline]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/thickline.py
632632
[p-threejs]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/threejs_scene.py
633633
[p-torus]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/torus.py
634634
[p-torusKnot]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/torus_knot.py
635635
[p-triangle]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/triangle.py
636-
[p-ui-buttons]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/ui.py
637-
[p-ui-card]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/ui.py
638-
[p-ui-prompt]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/ui.py
639-
[p-urdf]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/urdf.py
636+
[p-ui-buttons]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/arenaui_button_panel.py
637+
[p-ui-card]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/arenaui_card.py
638+
[p-ui-prompt]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/arenaui_prompt.py
639+
[p-urdf]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/urdf_model.py
640640
[p-video-control]: https://github.com/arenaxr/arena-py/blob/master/examples/attributes/video_control.py
641641
[p-videosphere]: https://github.com/arenaxr/arena-py/blob/master/examples/objects/videosphere.py
642642

content/overview/digital-twin.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ All this so far helps you Twin your physical space in 3D, but now, let us add so
7676
- System components which are hidden for aesthetics, but difficult to find for maintenance.
7777
- **Text I/O**: There are multiple ways to **render text, data,** and allow **user input**. Try these strategies:
7878
- [ARENA UI Panels](/content/3d-content/ui)
79-
- [Text Display](/content/python/objects#text)
80-
- [Text Input](/content/python/attributes#text-input)
79+
- [Text Display](/content/python/objects/text)
80+
- [Text Input](/content/python/attributes/textinput)
8181
- [Object Click Events](/content/python/events#click-events)
8282
- **Text Color**: Pay attention to the overall colors of your room model, you want any text you display to be **well contrasted**. ARENA UI Panels have **light or dark themes**, and text in general can be **any color**.
8383
- **Portal/Videosphere**: [Videospheres and Portals](/content/overview/panoramic) are a nice to have for hybrid interaction and can align well to a 3D model twin, but consider your goal. Do you want to host a hybrid meeting, or provide an XR interaction of your valuable data?

content/python-api/arena.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Python API
33
has_children: true
44
nav_order: 6.5
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/arena_mqtt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.arena_mqtt
33
parent: Python API
44
has_children: true
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes
33
parent: Python API
44
has_children: true
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/animation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.animation
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/animation_mixer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.animation_mixer
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/armarker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.armarker
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.attribute
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/attribution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.attribution
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/blip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.blip
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/box_collision_listener.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.box_collision_listener
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/click_listener.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.click_listener
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/color.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.color
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.data
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/data_event.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.data_event
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/dynamic_body.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.dynamic_body
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/gltf_model_lod.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.gltf_model_lod
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/gltf_morph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.gltf_morph
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/goto_landmark.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.goto_landmark
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/goto_url.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.goto_url
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/impulse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.impulse
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/jitsi_video.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.jitsi_video
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/landmark.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.landmark
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/material.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.material
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/material_extras.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.material_extras
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

content/python-api/attributes/model_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: arena.attributes.model_update
33
parent: arena.attributes
44
grand_parent: Python API
55
---
6-
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.1.0/arena">v1.1.0</a></small>
6+
<small>arena-py API <a href="https://github.com/arenaxr/arena-py/blob/v1.2.0/arena">v1.2.0</a></small>
77
<div>
88
<main class="pdoc">
99
<section class="module-info">

0 commit comments

Comments
 (0)