Infinite_T Bg
🛑 ALL INFORMATION CLICK HERE 👈🏻👈🏻👈🏻
Infinite_T Bg
Ошибка при установлении защищённого соединения
Страница, которую вы пытаетесь просмотреть, не может быть отображена, так как достоверность полученных данных не может быть проверена.
Пожалуйста, свяжитесь с владельцами веб-сайта и проинформируйте их об этой проблеме.
Во время загрузки страницы соединение с www.themoviedb.org было прервано.
Отправка сообщений о подобных ошибках поможет Mozilla обнаружить и заблокировать вредоносные сайты
Сообщить
Попробовать снова
Отправка сообщения
Сообщение отправлено
использует защитную технологию, которая является устаревшей и уязвимой для атаки. Злоумышленник может легко выявить информацию, которая, как вы думали, находится в безопасности.
Main Page
Discuss
All Pages
Community
Interactive Maps
Recent Blog Posts
Storyline
Quests by chapter
Quests by location
Quests by game
Quests by type
Reputation quests
All quests
World Map
Areas by game
Areas by type
Priest spells
Wizard spells
Spells by class
Spells by game
Spells by level
Spells by school
Bhaalspawn abilities
Class abilities
Innate abilities
Achievements
Classes
Ability Scores
Weapon Proficiency
Experience Tables
Reputation
Game Terminology
Source files
Forum
Baldur's Gate Wiki:To-do list
Experiment with editing
Policy
Model Pages
Find the Admins
Report VSTF
Main Page
Discuss
All Pages
Community
Interactive Maps
Recent Blog Posts
Storyline
Quests by chapter
Quests by location
Quests by game
Quests by type
Reputation quests
All quests
World Map
Areas by game
Areas by type
Priest spells
Wizard spells
Spells by class
Spells by game
Spells by level
Spells by school
Bhaalspawn abilities
Class abilities
Innate abilities
Achievements
Classes
Ability Scores
Weapon Proficiency
Experience Tables
Reputation
Game Terminology
Source files
Forum
Baldur's Gate Wiki:To-do list
Experiment with editing
Policy
Model Pages
Find the Admins
Report VSTF
Non-enchanted items
Magical items
Fire damage
Electricity damage
Summoning items
Spell protections (spell type)
Invisibility
Illusionary protections (spell type)
Illusion/phantasm spells
Detect invisible
Illusionary protection removers
Illusion removers
Illusionary creature destroyers
Divination spells
Can be used to cast a spell once a day or change the spell.
Community content is available under CC-BY-SA unless otherwise noted.
More Baldur's Gate Wiki
1
Neera
2
Dorn Il-Khan
3
World Map
Explore properties
Fandom
Cortex RPG
Muthead
Futhead
Fanatical
Follow Us
Overview
What is Fandom?
About
Careers
Press
Contact
Terms of Use
Privacy Policy
Global Sitemap
Local Sitemap
Community
Community Central
Support
Help
Do Not Sell My Info
Advertise
Media Kit
Fandomatic
Contact
Fandom Apps
Take your favorite fandoms with you and never miss a beat.
Baldur's Gate Wiki is a FANDOM Games Community.
The spell appears to be random, and so through judicious use of saving and loading, the spell the player prefers may be selected.
A second function of the book is to turn to a different page of the book. This allows for the possibility of getting a better spell. However, once the page has been turned the previous spell is lost forever, unless it happens to appear again.
Be warned. Once you turn to the last page of the book, you are stuck with that spell.
Shadows of Amn (2000) Content from the original Baldur's Gate II campaign Shadows of Amn
Baldur's Gate II: Enhanced Edition Shadows of Amn (2013) Content from the Baldur's Gate II: Enhanced Edition campaign Shadows of Amn
Extending Construct 3
Addon SDK Manual
Online Game Design Courses
Browse all game dev courses
How to create an infinite scrolling background
How to create an infinite scrolling background
Section 2
Screenshots
fixed-scrolling-background.capx
Download now 188.33 KB
0 Comments
Order by
Newest first
Oldest first
Top
Best
Our Company
About Us
Our Team
Press Kit
Contact Us
© Scirra Ltd 2022 • All rights reserved
v1026 • PRD-VM-WEB2a
Trusted by schools and universities worldwide
Free education resources to use in the classroom
Students do not need accounts with us
Official and community submitted guides
Learn and share with other game developers
Upload and play games from the Construct community
Game development stories & opinions
The following files have been attached to this tutorial:
This tutorial is licensed under CC BY 4.0 . Please refer to the license text if you wish to reuse, share or remix the content contained within this tutorial.
Hola, welcome to another tutorial written by yours truly :')
Now that the cringy intro is out of the way let me go through what we will accomplish by the end of this tutorial.
What we will be doing: By the end of this tutorial you will have a background that will scroll on it's own and seamlessly (depending on the background). Downloading the given Capx file will show you what we will be doing, feel free to copy the script but I recommend doing it yourself so it sticks with you :)
To setup you will need the following things:
1. Free version of Construct 2 (or bought).
Your background should be a tiled background once put into the engine. You need to double the size of it either vertically or horizontally depending on which way you want it to scroll. Scrolling right would mean that you want to double the width and put a minus ( - ) in front of the new number, if you want it to scroll left then double the width but DON'T put a minus. Scrolling up would mean you want to double the height and put a minus ( - ), scrolling down would mean you double the height but DON'T put the minus. You want to make sure that you have the doubled bit OUTSIDE of the layout.
For a reference look at the capx file.
You want your image point to be in the top left
Discussion Forums » Help with Scripts » How can I make an infinite scrolling background?
DeltaDinosaur
Scratcher
8 posts
forever if x position > -465 then change x by LIGHTSPEED * -1 else go to x: 0 y: 0
go to x: 0 y: 0 forever if x position > 35 then change x by LIGHTSPEED * -1 else go to x: 350 y: 0
AidyGamer60
Scratcher
100+ posts
when clicked forever if x position = position right before white appears then go to x: starting position y: your choice else move speed and direction steps wait optional secs
sup? i like making games and characters thats pretty much it
DeltaDinosaur
Scratcher
8 posts
DeltaDinosaur
Scratcher
8 posts
when clicked forever if x position = position right before white appears then go to x: starting position y: your choice else move speed and direction steps wait optional secs
DeltaDinosaur
Scratcher
8 posts
when clicked go to x: -15 y: 0 create clone of myself set LIGHTSPEED to 4 forever if x position > -465 then change x by LIGHTSPEED * -1 else go to x: -15 y: 0
when I start as a clone go to x: 465 y: 0 forever if x position > 15 then change x by LIGHTSPEED * -1 else go to x: 465 y: 0
AidyGamer60
Scratcher
100+ posts
That isn’t a bug The background might be uneven. Try making a pattern on the background! That might help it.
sup? i like making games and characters thats pretty much it
DeltaDinosaur
Scratcher
8 posts
Hey people, here is what I was working on, so check out the code for yourself: https://scratch.mit.edu/projects/402519204/
DeltaDinosaur
Scratcher
8 posts
Hey people, I've found a fix by adjusting the code even more, and adding a backdrop to cover the bugs. Check out my game on the link on the post above, so you can see my coding and stuff. Thanks, DeltaDinosaur
beard-cat
Scratcher
47 posts
All you need to do to create a. scaling background is to mesh multiple sprites together, as they move across the screen
when clicked forever Sub to beard-cat
HannibalZak
Scratcher
7 posts
when clicked go to x: 0 y: 0 forever if key right arrow pressed? then change backgroundx by 10
when clicked forever set x to backgroundx
when clicked forever set What I'm doing to Playing Fortnite
--cherrykitty--
Scratcher
500+ posts
You can use frames instead, like you can have many backdrops that infinitely loop, and in each backdrop, the elements move forward a little, and after they run out of the screen, then let it go back to the top of the screen at the same position. If you don't quite get what I mean, you can have a look at my 1s1s1c platformer, it uses this method to do the snowing effect.
There is more siggy after this! Highlight this and hit shift+down Hi, I am –cherrykitty– ! Although I may seem new, I've actually been on the offline editor for some time already. Feel free to ask me any questions on my profile! I am working at a couple shops. And I am now on a few collabs! Online cloud quiz creator Onscratch-a scratch social media
toom342
Scratcher
1 post
Rule 34 Incest
Yelenacruz Mfc
Mfc Eight_Bit