Discuss Scratch

wafflegoatz
Scratcher
31 posts

Another block [sprite in center boolean]

Ok I'm back with another idea. This one is a block that can sense if you are in the center of the stage and scroll through the stage. This would be an easy way to make a side scroller!
if <Sprite is in center> then
scroll through stage
end

Last edited by Paddle2See (Sept. 25, 2017 12:25:10)


Creeper, aw man!
FancyFoxy
Scratcher
500+ posts

Another block [sprite in center boolean]

…could you please answer these questions?

1. What is “you” referring to? The mouse pointer? Your face? Your in-game character?

2. What happens if you scroll and there's nothing else to scroll to? Does it just do nothing? Does it have the color white show up to fill in the blanks?

3. Don't you think this block is too specific? Yes, there's a workaround, but it's a necessary workaround because it lets you choose how you want the scroll to happen.

THIS IS MY SIGNATURE. THIS MEANS IT IS AN AUTOMATIC MESSAGE THAT APPEARS AT THE BOTTOM OF ALL MY POSTS.
Hi! I'm FancyFoxy! I create animations and games that were never, EVER meant to be taken seriously.
FancyFoxy Heroes and #Thanksgiving are some of my latest projects, check them out!
wafflegoatz
Scratcher
31 posts

Another block [sprite in center boolean]

Ok here they are.

1. It is your in game character (or there could be a slot where you choose).
2.There could be an input section where you could say if you scrolled for a certain amount then you could stop.
3.I don't get this one.

I hope this answers you questions (except number three, sorry!).

Creeper, aw man!
FancyFoxy
Scratcher
500+ posts

Another block [sprite in center boolean]

<Sprite is in center>

Very simple workaround:
<(x position) = [0]>

THIS IS MY SIGNATURE. THIS MEANS IT IS AN AUTOMATIC MESSAGE THAT APPEARS AT THE BOTTOM OF ALL MY POSTS.
Hi! I'm FancyFoxy! I create animations and games that were never, EVER meant to be taken seriously.
FancyFoxy Heroes and #Thanksgiving are some of my latest projects, check them out!
wafflegoatz
Scratcher
31 posts

Another block [sprite in center boolean]

Good point. B ut this would be better for new scratchers who don't know stuff like that.

Creeper, aw man!
FancyFoxy
Scratcher
500+ posts

Another block [sprite in center boolean]

wafflegoatz wrote:

Ok here they are.

1. It is your in game character (or there could be a slot where you choose).
2.There could be an input section where you could say if you scrolled for a certain amount then you could stop.
3.I don't get this one.

I hope this answers you questions (except number three, sorry!).

1. Okay, then you should say “the sprite”
2. ???
3. “Scroll through stage” is far too specific of a block to be included in the palette.

THIS IS MY SIGNATURE. THIS MEANS IT IS AN AUTOMATIC MESSAGE THAT APPEARS AT THE BOTTOM OF ALL MY POSTS.
Hi! I'm FancyFoxy! I create animations and games that were never, EVER meant to be taken seriously.
FancyFoxy Heroes and #Thanksgiving are some of my latest projects, check them out!
wafflegoatz
Scratcher
31 posts

Another block [sprite in center boolean]

Better idea! What about a block that if you want to make a sidescroller but cant make it auto move then what you can do is make a block that can do effects while changing the stage
next backdrop with effect [  Slide v] 

That could make it look like one but it isnt

Last edited by wafflegoatz (Sept. 21, 2017 23:24:30)


Creeper, aw man!
DaEpikDude
Scratcher
1000+ posts

Another block [sprite in center boolean]

wafflegoatz wrote:

Better idea! What about a block that if you want to make a sidescroller but cant make it auto move then what you can do is make a block that can do effects while changing the stage
next backdrop with effect [ slide v]::looks

That could make it look like one but it isnt
I'd support stage transitions (like powerpoint?)
Maybe have none, slide, fade, fall, pixelate?

And all the world over, each nation's the same,
They've simply no notion of playing the game.
They argue with umpires, they cheer when they've won,
And they practice beforehand, which ruins the fun!
Wahsp
Scratcher
1000+ posts

Another block [sprite in center boolean]

if <<(x position) = [0]> and <(y position) = [0]>> then
repeat (how many times you need it to scroll::sensing)
next backdrop
end
end
or

wait until <<(x position) = [0]> and <(y position) = [0]>>
repeat (how many times you need it to scroll::sensing)
next backdrop
end

​I am Wahsp
______________________________________________________

Formerly pretty active on the forums, probably mostly retired now…
If you see one of my posts send me a hello!
______________________________________________________
Charles12310
Scratcher
1000+ posts

Another block [sprite in center boolean]

wafflegoatz wrote:

Ok I'm back with another idea. This one is a block that can sense if you are in the center of the stage and scroll through the stage. This would be an easy way to make a side scroller!
if <Sprite is in center> then
scroll through stage
end
<<(x position) = (0)> and <(y position) = (0)>>

There you go.


A few internet communication companies want to corrupt the internet by getting rid of net neutrality. Stop Them!
-ShadowOfTheFuture-
Scratcher
1000+ posts

Another block [sprite in center boolean]

I believe that somewhere in Scratch 2.0 Alpha, there was a
scroll right ():: motion
block that scrolled the backdrop, but it was removed.

<Insert uncreative signature here>









██       ██  ██            ██  ██       ██
██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██
██ ██ ██ ██ ██ ██ ██
███ ███ ██ ████ ██ ███ ███
█████████ █████ █████ █████████

“Though the seasons come and go, and sunshine turns to snow, we will always have tomorrow up ahead.”
--Waterfall--
Scratcher
500+ posts

Another block [sprite in center boolean]

There is a workaround though… Maybe when you create a project, a popup comes up saying "If you want to center your character, than do
<<(x position) = [0]> and <(y position) = [0]>>


Water


DaEpikDude
Scratcher
1000+ posts

Another block [sprite in center boolean]

--Waterfall-- wrote:

There is a workaround though… Maybe when you create a project, a popup comes up saying "If you want to center your character, than do
<<(x position) = [0]> and <(y position) = [0]>>


Water
I think a popup is a bit far…

And all the world over, each nation's the same,
They've simply no notion of playing the game.
They argue with umpires, they cheer when they've won,
And they practice beforehand, which ruins the fun!
Botcho_Otkho
Scratcher
1000+ posts

Another block [sprite in center boolean]

Can you be more specific,please? I cannot understand what do you mean by “scroll trough stage”.
Anyway,there's a super-simple workaround for “sprite is in center”:
<<(x position) = [0]> and <(y position) = [0]>>

I see now that the circumstances of one's birth are irrelevant. It is what you do with the gift of life that determines who you are. - Mewtwo
I-Iz-A-Litten
Scratcher
1000+ posts

Another block [sprite in center boolean]

wafflegoatz wrote:

Better idea! What about a block that if you want to make a sidescroller but cant make it auto move then what you can do is make a block that can do effects while changing the stage
next backdrop with effect [  Slide v]::looks

That could make it look like one but it isnt

please only put one suggestion per topic

under penalty of law this signature is not to be removed except by the consumer
wafflegoatz
Scratcher
31 posts

Another block [sprite in center boolean]

I-Iz-A-Litten wrote:

wafflegoatz wrote:

Better idea! What about a block that if you want to make a sidescroller but cant make it auto move then what you can do is make a block that can do effects while changing the stage
next backdrop with effect [  Slide v]::looks

That could make it look like one but it isnt

please only put one suggestion per topic

Well That was me adding on to it!

Creeper, aw man!
wafflegoatz
Scratcher
31 posts

Another block [sprite in center boolean]

Adding on to the transitions here is another add-on. tell me if this is to much for a block!
next backdrop with transition [slide v] to the [right v]


when green flag clicked
say [I PWAY YOYTUBE!!]

Last edited by wafflegoatz (Sept. 24, 2017 00:32:53)


Creeper, aw man!
wafflegoatz
Scratcher
31 posts

Another block [sprite in center boolean]

Botcho_Otkho wrote:

Can you be more specific,please? I cannot understand what do you mean by “scroll trough stage”.
Anyway,there's a super-simple workaround for “sprite is in center”:
<<(x position) = [0]> and <(y position) = [0]>>

Basically what I mean is basically in a sidescroller you have the stage going forward as you go forward also I'm saying this block is good because making a sidescroller is complex right now.

Creeper, aw man!
Botcho_Otkho
Scratcher
1000+ posts

Another block [sprite in center boolean]

wafflegoatz wrote:

Botcho_Otkho wrote:

Can you be more specific,please? I cannot understand what do you mean by “scroll trough stage”.
Anyway,there's a super-simple workaround for “sprite is in center”:
<<(x position) = [0]> and <(y position) = [0]>>

Basically what I mean is basically in a sidescroller you have the stage going forward as you go forward also I'm saying this block is good because making a sidescroller is complex right now.
If this block would be added (i don't think it would be added),the scratch paint should be changed. Also,if you learn basics (it's really easy),making a sidescroller is super-easy. I really don't want to be rude,but it's not a good idea,as per there is an easy workaround for the first block,and an easy way to make a sidescroller.

I see now that the circumstances of one's birth are irrelevant. It is what you do with the gift of life that determines who you are. - Mewtwo
I-Iz-A-Litten
Scratcher
1000+ posts

Another block [sprite in center boolean]

wafflegoatz wrote:

I-Iz-A-Litten wrote:

wafflegoatz wrote:

Better idea! What about a block that if you want to make a sidescroller but cant make it auto move then what you can do is make a block that can do effects while changing the stage
next backdrop with effect [  Slide v]::looks

That could make it look like one but it isnt

please only put one suggestion per topic

Well That was me adding on to it!


only put one suggestion in ONE topic, make a separate topic for each suggestion

under penalty of law this signature is not to be removed except by the consumer

Powered by DjangoBB