Перейти к содержанию
View in the app

A better way to browse. Learn more.

iKey

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

2.5d Toolkit File

void LateUpdate() transform.rotation = Quaternion.LookRotation(transform.position - Camera.main.transform.position); // Optional: lock rotation axes

void LateUpdate() Vector3 delta = Camera.main.transform.position - camStart; transform.position = new Vector3(transform.position.x + delta.x * parallaxFactor, transform.position.y + delta.y * parallaxFactor, transform.position.z);

Vector3 GetGridPosition(Vector3 worldPos) float tileSize = 1f; float x = (worldPos.x / tileSize + worldPos.z / tileSize) / 2; float z = (worldPos.z / tileSize - worldPos.x / tileSize) / 2; return new Vector3(Mathf.Round(x), 0, Mathf.Round(z)); 2.5d toolkit

For trees, particles, or UI labels:

public float parallaxFactor = 0.5f; // lower = slower movement private Vector3 camStart; void Start() => camStart = Camera.main.transform.position; void LateUpdate() transform

Or use Unity's (Project Settings → Graphics → Set 2.5D Sorting Axis to (0,1,0) ). 3. Parallax Backgrounds Create a parallax layer controller:

// Simple Y-axis sorting void Update() spriteRenderer.sortingOrder = (int)(-transform.position.y * 100); transform.position.y + delta.y * parallaxFactor

Convert mouse click to 2.5D grid cell:

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.