Questions tagged [scrolling]
Games that include scrolling
66 questions
0
votes
1
answer
170
views
Scrolling the screen left, right, up and down based on cameras rotation in Unity with C#
I'm making a building game in Unity and C#
I want to be able to scroll the screen in all 4 directions when in building mode.
At the moment, I can rotate the camera and scroll the screen left and right,...
0
votes
2
answers
323
views
Infinite scrolling with mouse
I know we're able to scroll a background image hardcoded or using awsd keys(or arrows) if they're pressed. But what about scrolling it with mouse movement? So I have a piece of panoramic image as a ...
1
vote
1
answer
109
views
Selecting Tiles Correctly With Scroll
I would like to understand the process of selecting the correct tile from a scaled Surface when I have information about the number of tiles on the x and y axes, the length of the Surface, and also ...
3
votes
1
answer
250
views
What was the rationale behind the updating of 'changed' tiles in John Carmack's Adapatie Tile Refresh?
I was recently reading up on Carmack's Adaptive Tile Refresh, of which was written extensively in this thread, to implement in a hobby gamedev project of mine: https://retrocomputing.stackexchange.com/...
2
votes
2
answers
2k
views
How to prevent Unity's ScrollRect from moving as the size of the content changes?
I'm writing a Text-RPG and I have set up a ScrollRect where new paragraphs and choices are added and removed at every turn. This makes the size of the Content change constantly, which I handle with a ...
0
votes
1
answer
477
views
How to create IOS style rubber scrollbar in unity?
I'm looking to create a scroll bare similar to IOS scroll when you load page or something when it lets you pull all the way down but the tension gets higher like it is on spring. How would I approach ...
2
votes
1
answer
8k
views
Unity ScrollView not scrolling with Clamped or Elastic
I have a ScrollView object in my project. It is set to Clamped.
Inside the ViewPort, I have Content and what I actually want to scroll, a TextViewMesh. The Content has a Content Size Fitter, with its ...
1
vote
1
answer
206
views
How to stop scrolling of text in OpenGL
I want to set a time limit for scrolling text in OpenGL & GLUT. How can I stop scrolling at 250? Here is my code. I try with the if condition but it's not working. The scrolling is not stopping in ...
1
vote
1
answer
1k
views
How to make Sprites scroll with the background image that are inside Scroll View?
I'm new in Unity, so I hope you guys can help. I'm developing a 2D-game for Android device, on the scene I have a huge background image inside Scroll View (UI - Scroll View).
Next, I created new ...
1
vote
1
answer
109
views
Why isn't my vertical scrolling functioning properly?
I'm trying to make a simple 2D platformer in XNA, but I'm having trouble with the vertical scrolling.
What I'm trying to accomplish is that whenever the player is above half the height of the screen,...
0
votes
0
answers
52
views
Scrolling backgrounds without tiles
I'm writing a paper on game backgrounds and need to look at how they are implemented in different games, but I'm a bit stuck on scrolling backgrounds.
While it's easy to recognize a scrolling ...
0
votes
1
answer
538
views
Scrolling in 3d Shmup with 32Bit era effects
How can I create a scrolling effect like in Ikaruga, where the background is on Rails and the foreground is fixed with the player in Unity?
https://www.youtube.com/watch?v=H6d0PkEPKSk
Some more ...
0
votes
1
answer
599
views
How can I implement an infinite parallax background like in Slither.io?
I am trying to replicate the endless scrolling of slither.io but, I can't figure out how to implement it. Since the players can move to any direction and the background needs to be available during ...
0
votes
1
answer
470
views
How can I implement a scrolling text ticker?
How can I implement a right-to-left scrolling text ticker in libGDX (like stock tickers)?
0
votes
1
answer
961
views
How to clip what is outside scroll view when using a custom UI element?
I have created a custom UI element (that use CanvasRenderer).
Here is code :
...