mahdi71's Recent Forum Activity

  • >

    > hi,

    > use unity + blox 3 plugin

    > sorry scirra

    >

    This looks one interesting plugin, I haven't seen it before. However Unity has a much bigger learning curve than C2 and that block based visual programming the plugin uses is

    not so efficient as event sheets

    .

    why ?

  • This Engine is starting to get on my nerves

    Starting to feel like I've waisted my money, spent over 2000 Dollars and my results are sad

    I restarted my game over about 9 times because of some features not working correctly with others or simple problems like [[moving player to new layout plus keeping variables]] to be EXTREMELY hard to do and taking Hrs to figure out.

    If you want to create a game where you jump and go straight then this is the Engine for you but other then that I recommend you look else where.

    Been using this program for a month or 2 and in the beginning this engine was very easy to use but now that I advanced it feels like this gaming engine has gotten 10 times harder to use. Here are my results

    1st try-

    Subscribe to Construct videos now

    3rd try-

    6th try-

    Last try-

    Ill try back in about a year or 2 hopefully the engine is better optimized but for now Ima go buy and try a few other engines. Im use to using the Unreal Engine but My budget is only around 20,000 so I decided to make a 2d MMO game using a easy to use engine but there far to many problems for the type of project Im creating.

    hi,

    use unity + blox 3 plugin

    sorry scirra

  • Ashley

    can you help me ? what did you with the engine wich dir="rtl" not working ?

    i mean it has to working with the engine .

    what can i change ?

  • hi

    i want RTL support for my texts

    i add this (dir="rtl") to canvas tag like here : http://stackoverflow.com/questions/8961 ... eft-string

    but its not working for c2 why ?

    is there any other way to fix that ?

    (c2 dosn't really support RTL (right align is not RTL))

  • Hello friends & C2

    I need to know, when you compile the game cocoon.io and download weighs weighs more than my game, my game weighs 2.3 MB, and at the end of compiling weighs 24MB.

    Thanks Friends

    hi ,

    2.3 + ~5 = ~8

    in the zip file they put : unsign and sign and x86 version so there is 4 apk file but if you put your key in key tap they just send ARM and x86 sign version so there is 2 apk but you only need ARM version

  • I just mentioned global variables as a way to help the OP with his 3rd problem. Honestly I use global variables for the same purpose, to minimize my overall code. The security issue doesn't really concern me as most players just play the game, not hack it. As long as the game isn't multi-player it doesn't matter.

    What does matter is lowering the amount of code you use to make your life easier. In that reguard global variables can definitely help.

    3rd problem ? when i write my own pathfinding system i dont know how a global variable can help me !

    i can do this :

    use function (do pathfinding stuff) return position of object > set position

    but when you want to use this code again you have to write the set position part again

    and it would better if we write whole system and drag the sheet to what every object we want! (cleaner and faster)

    and what happens if i want to get first mypathfinding nodepoint ?

    here i can set the object instance variables in function but when we want to use this function again we have to change the object , so the function is usless here

    but in secound way (which other engines use) i can set variables and access to them by another sheet

  • Try Construct 3

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

    Try Now Construct 3 users don't see these ads
  • I think you recieved pretty good answers there mahdi71 . Anyway, I'll post my opinions about your op:

    1 - I never had any problems with creating a UI. I even think it's one of the easiest part of making a game. However it's still more complicated to make than in an engine that has a built in UI framework. I used Unreal Engine 4 and the UI editor it has it's just awesome. Since Construct 2 is a lightweight but powerful general purpose engine you have to do it all here yourself without a dedicated editor. I don't think it's a problem, as I said above, I never had any problems with making a UI (and for what I've seen on the forum it's not just me). But I get your point.

    2 - Yes, Construct 2 uses a somewhat different approach than other engines. In Unity you make scripts and assign them to objects. Here you have the event sheets and all of your visual code goes there. I think the latter is easier to see through if you make well organized code. The family thing (to have different type of objects in one) was requested many times. Maybe we can expect that functionality in C3.

    3 - True, you can't reuse your code like in a traditional programming environment. But just as other Devs said in this topic, it's not necessary appropriate to do so. If you need your code reused you can always make a function and/or use copy-paste. Modularity is also a demanded feature for C3, and Scirra said we might have it somewhere after the release of C3.

    4 - Then use other methods to keep values between layouts. Global variables, Arrays, Dictionaries, etc..

    5 - I don't get your problem with localstorate. Can you elaborate?

    I experienced C2 as the fastest development software on the market. You can make complete games in the fraction of the time it would take with any traditional programming engine. I don't agree with your statement either that C2 is not for big projects. Take a look at this topic:

    1- if you don't have any problem it dosn't mean its perfect (i said an example)

    2- you agree

    3-functions still need specefic objects .. you agree

    4-other methods gets more times and need more event sheets but they have to be done by editor

    5-you have to request it to system to read it then you can use it : i know why scirra did this with localstorge but there are so many better ways to do that (they did it becuase game don't stop until the variable get ready)

    __

    c2 can do big projects (my project have more than 1100 event sheet) but its not good for big projects

  • mahdi71, you been around long enough and build more then enough to know various limitations.

    Why has it suddenly become an issue to rant about ?

    Also,

    >

    > so yes c2 is not so fast after all . and its really not good for big projects.

    >

    That construct 2 is not so fast is more a matter of personal opinion here I think.

    To me it is one of the quickest development tools around.

    And handling large projects is just another skill set you need to acquire.

    hi, its not an issue .

    people here think i said it can't be done, but i said its just take alot of work for a thing wich can be done by a drag and drop !

    just read what i write then tell me if i wrong.

    people here answer me with a "lol" becuase they really dont have an answer, i said this things can be done but with much work. just that so i dont need an capx example

  • You can resolve all of these issues if you spend an afternoon to read through the manual. And study a bit of programming concepts such as functions, including files, and arrays.

    All of your issues are pretty much beginner problems which can easily be resolved with better understanding of C2 already existed functionalities and programming concepts.

    i am a pro with construct 2 and a pro developer

    if you can solve one of them ?

    (im not say that things can't be done i mean they take so much time and work for simple things)

  • hi, at first its look fast but... :

    1-ui: its so hard to do a ui in c2 ! why ? let say you want to make a dialog with yes or no sprite with a text and 9patch for backgraound then you want that dialog to move from bottom to center of screen

    so you have to add pin behavior to each sprite and texts and ... or you have to move all of them (you can not use 1 family for all of them becuase texts and sprites and 9patchs and tilebackgrouand can not be in the same family)

    so let say in event sheets you pin all of them in one 9patch now you can move just 9patchs

    then you have to go to every event wich they use clicks on them and you say if the dialog is open then dont act becuase when you click on yes or no maby you click on behaind them! . (so its alot of event sheets)

    and things get even worst when you want to have a another ui like wich move from buttom to center when you need it , so you have to do all of this again !!!!!

    ok so what we can do in other engines like unity :

    we drag and drop all texts and other sprite and other stuf in a gameobject (or the dialog background ) so they will act likethat ! and we dont have to change all other click events we can use one simple line of code! or use so many different ways (its mostly a simple drag and drop)

    2-sheets : eventsheets are not for each object , they are global ! let say you want to 2 sprite and 1 text and 1 9patch move 1 pixel at the same time

    so you have to pick each on of them then move them , in c2 we can have familly but they usless because when you want to create an instance you can not use them and create it with name and you can not make a familly with different objects so there is no child objects.

    3- (the worst !) you can not write 1 code(event sheet) and use in all of your projects !

    let say you make a patchfinding system (with event sheets) for an object then if you want to use that patchfinding system again you have to copy all the events and be cerfull to have the same objects and variables and stuf on your other projects then you have to past that system then change the object to new one !

    4- when you set a sprite variable in layout 1 you can not access to that in other layout

    5- there is so many things like this, for example : new localstorge is so bad you can not simply get a variable ! you dont have a direct access to it !

    so yes c2 is not so fast after all . and its really not good for big projects.

  • hi,

    let say i have a nice game with IAP but i dont have any money for ads

    if i publish my game to apple app store anyone going to see it ? or its like google, when you publish in google play no one going to see your game.

    and how about problems with construct 2 and audio files? is it any solve yet ?

  • Zebbi & gaelsev

    i will agree for native exports but scirra will not do that ! i mention cocoon.io because its the best option for now!

mahdi71's avatar

mahdi71

Member since 24 Aug, 2014

None one is following mahdi71 yet!

Trophy Case

  • 10-Year Club
  • Email Verified

Progress

11/44
How to earn trophies