Changes between Version 16 and Version 17 of AndroidPort


Ignore:
Timestamp:
Dec 29, 2011, 2:09:28 PM (12 years ago)
Author:
Anders Feder
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AndroidPort

    v16 v17  
    2323
    2424=== Camera ===
    25 Camera control is performed by applying swipe gestures on ground terrain:
     25Camera panning is performed by applying inverse swipe gestures on the screen:
    2626
    27  * Swipe down - pan camera down.
    28  * Swipe up - pan camera up.
    29  * Swipe left - pan camera left.
    30  * Swipe right - pan camera right.
     27 * Swipe down - pan camera up.
     28 * Swipe up - pan camera down.
     29 * Swipe left - pan camera right.
     30 * Swipe right - pan camera left.
     31
     32Additionally, the further from the center of the screen the swiping motion begins, the faster the panning will be.
     33
     34Camera rotation is performed by applying a circular swipe gesture on the screen:
     35
    3136 * Swipe clockwise - rotate camera clockwise.
    3237 * Swipe counter-clockwise - rotate camera counter-clockwise.
     38
     39The closer to the center the swiping motion begins, the faster the rotation will be, such that when a circular gesture is complete, the camera has completed a full rotation.
     40
     41Camera zoom is performed by applying a pinching gesture on the screen:
     42
    3343 * Pinch in - zoom in.
    3444 * Pinch out - zoom out.
     
    4151
    4252 * Touch position on minimap - pan camera to the corresponding position on the map.
     53
     54=== Entity selection ===
     55If a single entity is touched, it is immediately selected.
     56
     57If a swiping gesture is applied to an entity, a circular selection is drawn with its center in the entity where the gesture began and a radius equal the length of the swipe.
     58
     59If a swiping gesture is applied to ground terrain, a bounding box selection is drawn with one corner where the gesture began and the opposite corner where the gesture ended.
    4360
    4461== Libraries ==