Belfryboi's Forum Posts

  • 7 posts
  • Helloo

    I've been trying to customize a text field while i'm practicing, so far i found out you gotta use css which i think is great but i can't get it to work

    I got the .css file loaded in my project and the id of the text field is set to "center5", but it doesn't seem to change anything

    here's the css

    .center5 {
      display: inline-block;
      -webkit-box-sizing: content-box;
      -moz-box-sizing: content-box;
      box-sizing: content-box;
      padding: 10px 20px;
      border: none;
      font: normal 16px/0 Verdana, Geneva, sans-serif;
      color: rgba(0,142,198,1);
      text-align: center;
      -o-text-overflow: clip;
      text-overflow: clip;
      -webkit-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
      -moz-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
      -o-transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
      transition: all 200ms cubic-bezier(0.42, 0, 0.58, 1);
    }[/code:24h38bao]
    
    Also i'm a total newbie here and i'm kinda worried if using css might have varying results, my target platform is android
    
    Eitherway thanks in advance
  • turns out this might be a bug as of right now :p

    for anyone who's interested i found a post on the construct-3-bugs github:

    github.com/Scirra/Construct-3-bugs/issues/1212

  • ooh yea makes sense didn't think about that. managed to get it working now, thanks

  • Ohai

    so the concept is missles are spawning from the top and moving down, i wanna make it so when the player picks up a speed boost object, the missles' bullet.speed increases. i got it all setup and working except for when new missles spawn their speed is back to normal instead of staying the boosted value, only the ones currently on screen seem to be affected

    hope i'm making sense here, thanks in advance

  • Try Construct 3

    Develop games in your browser. Powerful, performant & highly capable.

    Try Now Construct 3 users don't see these ads
  • Helloo

    my phone still vibrates after touching the screen in-game, i'm not talking about the tapping vibrate but the one that happens after touching it for ~a second

    any way to disable this?

    thanks in advance

  • Thanks!

  • Helluu

    Subject pretty much says it, I wanna make so when I press a button, the action happens x seconds instead of instantly

    thanks in advance

  • 7 posts