Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by LorenzoSampietro · Jul 04, 2021 at 12:27 PM · script.mobile devicesmobileoptimization

Mobile Game: Setup right confiner size depending by device

Good afternoon,

I'm making a small demo on a mobile device in portait mode.

Thanks to the simulator it is very easy to understand what the result will be on the device and I concentrated the designing of the game with the widest device now available (iPad Pro 12.9).

I implemented a Cinemachine virtual camera with camera confiner extension.

The problems arise when the device is no longer an ipad Pro but an iphone and the resolution changes but the confiner remains the same with the result of making the player exit the scene.

I make a solution by myself: I applied a formula that re-set the width of the confiner based on the resolution.

Here the code written on a "confiner boxcollider object":

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
  
 [RequireComponent(typeof(BoxCollider))]
 public class SetCameraConfiner : MonoBehaviour
 {
     private BoxCollider m_collider;
  
     private Vector3 m_size;
     private float m_oriWidth;
  
     // Start is called before the first frame update
     void Start()
     {
         m_oriWidth = 2048;
  
         m_collider = GetComponent<BoxCollider>();
         m_size = m_collider.size;
     }
  
     // Update is called once per frame
     void Update()
     {
         float vWidth = Screen.width;
         float vx = m_oriWidth / vWidth * m_size.x;
  
         if (vx != m_collider.size.x)
         {
             Vector3 vnewSize = new Vector3(vx, m_collider.size.y, m_collider.size.z);
             m_collider.size = vnewSize;
         }
     }
 }
  

After some tests seems to work perfectly but I would like to know if there is a more elegant solution because: 1) I set the resolution of the iPad "hardcoded" (2048) 2) I would not like to find surprises in case of new devices.

Does anyone have any smarter solutions?

Screenshot of unity editor: alt text

Screen shot of simulator results: alt text

schermata-2021-07-03-alle-1540.jpeg (241.9 kB)
schermata-2021-07-03-alle-154025.jpg (216.5 kB)
Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

153 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Mobile game, edges as colliders 0 Answers

How do I make mobile controls work within unity? For example moving, jumping and pressing buttons. 0 Answers

Is there any problem in using assets as prefabs instead of just gameobject? 0 Answers

Function not returning value on android 0 Answers

Mobile Optimization: Instantiate/Destroy vs. Enable/Disable (for non-frequent use) 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges