---
metadata:
  - name: generator
    content: Diplodoc Platform v5.52.0
alternate:
  - https://yandex.com.tr/dev/games/doc/en/sdk/defold/params.md
  - https://yandex.com.tr/dev/games/doc/hi/sdk/defold/params.md
  - https://yandex.com.tr/dev/games/doc/ko/sdk/defold/params.md
  - https://yandex.com.tr/dev/games/doc/ru/sdk/defold/params.md
  - https://yandex.com.tr/dev/games/doc/tr/sdk/defold/params.md
  - https://yandex.com.tr/dev/games/doc/vi/sdk/defold/params.md
  - https://yandex.com.tr/dev/games/doc/zh/sdk/defold/params.md
  - href: tr/sdk/defold/params.md
    type: text/markdown
    title: Markdown version
  - href: ../../llms.txt
    type: text/markdown
    title: llms.txt
---
> **Documentation Index:** Fetch the complete configuration index at https://yandex.com.tr/dev/games/doc/tr/llms.txt

# Diğer SDK nesneleri ve parametreleri

<!-- source: tr/_includes/script-common.md -->
<!-- source: tr/_includes/script/index-js.md -->

<!-- endsource: tr/_includes/script/index-js.md -->

<!-- source: tr/_includes/script/requirements-js.md -->

<!-- endsource: tr/_includes/script/requirements-js.md -->

<!-- source: tr/_includes/script/image-modal-js.md -->

<!-- endsource: tr/_includes/script/image-modal-js.md -->
<!-- endsource: tr/_includes/script-common.md -->

## screen nesnesi {#screen}

Ekranla çalışmak için ayarları içerir:

```lua showLineNumbers
{
    fullscreen: {
        status: function(): "on"|"off",
        request: function(): nil,
        exit: function(): nil
    },
    orientation: {
        get: function(): "portrait"|"landscape",
        set: function(value: "portrait"|"landscape")
    }
}
```

{% note alert %}

Yandex Games otomatik olarak tam ekran modunda başlatılabilir, ancak birçok tarayıcı kullanıcı komutu olmadan mod değiştirmeyi yasaklar.

Yandex Games ekranının sağ üst köşesinde, tam ekran moduna geçmek için zaten bir buton uygulanmıştır, bu nedenle butonları doğrudan oyunda işlemek için `screen.fullscreen` nesnesinin parametrelerini kullanın.

{% endnote %}

## clipboard nesnesi {#clipboard}

Bir dizeyi `ysdk.clipboard.write_text(text: string)` yöntemini kullanarak panoya yazmak için tasarlanmıştır.

## device_info nesnesi {#device-info}

Kullanıcının cihazı hakkında bilgi almak için `ysdk.device_info()` yöntemiyle kullanılır.

```lua showLineNumbers
{
    type: "mobile"|"desktop"|"tablet"|"tv",
    isMobile: boolean,
    isDesktop: boolean,
    isTablet: boolean,
    isTV: boolean,
}
```

---


<!-- source: tr/_includes/button-git.md -->
<a href="https://github.com/yandex-games-plugins/defold">
  <span class="button">Depo</span>
</a>
<!-- endsource: tr/_includes/button-git.md -->
