Archiverse Internet Archive
投稿のみ 投稿と返信
前のページ(最近)
136 37 38 39 40 41 42 43 44 45 46 47 48
次のページ(過去)
返信[6]
親投稿
Oscar PwnageBlock
Thanks for the feedback! @NagatoYuki I might be able to do something similar to the Metroid Prime 2 menu with a bit of time. @Darkcon I left the character definition array like that so that people would be able to customize it by changing the characters, or even inputting entire words. @12Me21 I actually planned on doing that, but I don't have a N3DS or Circle Pad Pro to test it with. Sorry!
0そうだね
プレイ済み
返信[1]
親投稿
Oscar PwnageBlock
If I ever get to truly finish it, I may add... -Cut/Copy/Paste functions. -Alt-code typing, to add any character not on the wheel. -Tabbing. -Shift Key, so it isn't necessary to be constantly switching keyboard modes to type Uppercase/Lowercase letters. Any suggestion or feedback is appreciated!
0そうだね
プレイ済み
プレイ日記
Oscar PwnageBlock
Key: «TX3YN3Q4» And just like that, my daisy wheel keyboard is done! This is the same system Steam uses for typing with controllers! It may take a while to get used to it, though. Funny enough, the text editor took more effort to make than the actual keyboard. (; -_-)
14そうだね
プレイ済み
プレイ日記
Oscar PwnageBlock
Someone asked me to do a daisy wheel keyboard. Here's progress so far!
1そうだね
プレイ済み
プレイ日記
Oscar PwnageBlock
Update 3.3.0 incoming! Brace yourselves!
4そうだね
プレイ済み
返信[3]
親投稿
Oscar PwnageBlock
The help button usually holds useful information.
0そうだね
プレイ済み
返信[16]
親投稿
Oscar PwnageBlock
Reading text in that doesn't seem too easy! I asume you can control text scroll speed?
0そうだね
プレイ済み
返信[3]
親投稿
Oscar PwnageBlock
This app seems to like the letter P a lot... Maybe it's related to SMB3? /s
1そうだね
プレイ済み
返信[4]
親投稿
Oscar PwnageBlock
Just follow these simple steps... 1 - Make Mortal Kombat. 2 - ??? 3 - Profit.
0そうだね
プレイ済み
返信[3]
親投稿
Oscar PwnageBlock
You don't need an ENDIF if your IF statement doesn't span over 1 line.
0そうだね
プレイ済み
返信[3]
親投稿
Oscar PwnageBlock
Paper Mario is a pretty good RPG. ˘¬˘
0そうだね
プレイ済み
返信[11]
親投稿
Oscar PwnageBlock
And here I was thinking the screen data would only take 2 bytes in memory, but color changes everything... Is the color pallet limited or is it full RGB?
0そうだね
プレイ済み
返信[3]
親投稿
Oscar PwnageBlock
7 seconds? You're too slow! I took 3 nanoseconds. ... Being serious, my best time was about 5:40.
0そうだね
プレイ済み
返信[1]
親投稿
Oscar PwnageBlock
WHILE TRUE IF BUTTON() AND #X THEN 'DO SOMETHING ENDIF WEND The BUTTON command can also be given a parameter. I suggest looking at the help entry. (Hover the cursor over BUTTON and press [ ? ]) Also, you can use buttons other than X. Just replace the #X with either of these: #A #B #X #Y #LEFT #RIGHT #UP #DOWN #L #R These are New 3DS only: #ZL #ZR You can't use START or SELECT, though.
2そうだね
プレイ済み
返信[4]
親投稿
Oscar PwnageBlock
Balding man, all the way.
1そうだね
プレイ済み
返信[42]
親投稿
Oscar PwnageBlock
Para llenar una figura puedes usar GPAINT. Esta recibe la coordenada de un punto, el color del relleno, y el color de borde. Este llena la pantalla desde el punto que le mandas hasta encontrarse con el color que le mandas de borde. Por ejemplo, si tienes un circulo centrado en (100,50) con borde rojo... GPAINT 100,50,#YELLOW,#RED Esto va a llenar de amarillo el circulo hasta el borde rojo.
1そうだね
プレイ済み
返信[37]
親投稿
Oscar PwnageBlock
Si buscas informacion sobre BASIC en linea no encontraras mucha información perteneciente a este programa. Lo mejor que podrias hacer es darle un vistazo al manual y al libro de referencias en la página oficial de SmileBASIC, aunque incluso estos estan en ingles. En realidad no he visto un buen tutorial en español para este programa. Talvez pueda hacer uno en mi tiempo libre.
1そうだね
プレイ済み
返信[35]
親投稿
Oscar PwnageBlock
Por ejemplo... GCIRCLE 100,50,25 Esto crearia un circulo de radio 25 centrado en (100,50) de borde blanco. GCIRCLE 100,50,25,#RED Este seria el mismo circulo pero con un borde rojo. GCIRCLE 100,50,25,RGB(255,0,255) Este crearia uno con un borde purpura, especificado con RGB().
0そうだね
プレイ済み
返信[34]
親投稿
Oscar PwnageBlock
El color del borde lo puedes especificar con la funcion RGB(), la cual recibe 3 numeros del 0 al 255 como parametros, para la cantidad de rojo, verde y azul. Tambien puedes usar algunos colores predeterminados que aparecen al teclear #, pero estos tambien estan en ingles.
0そうだね
プレイ済み
返信[33]
親投稿
Oscar PwnageBlock
Puedes hacer un circulo con el comando GCIRCLE. Toma un minimo de 3 numeros como argumentos. No recuerdo el orden de los argumentos pero son la coordenada del centro del circulo (X y Y) y su radio. Por defecto el circulo tiene un borde blanco pero puede tomar otro argumento, el cual es el color del borde del circulo.
0そうだね
プレイ済み